Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e2535f7

Browse files
authored
Merge pull request #725 from utPLSQL/master
Master
2 parents 34fdc57 + 2e2e943 commit e2535f7

8 files changed

Lines changed: 15 additions & 13 deletions

File tree

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v3.1.2-develop
1+
v3.1.2

development/releasing.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,19 @@ With every build, the build process on Travis updates files with an appropriate
44
This step is performed, to confirm that the update of versions works properly.
55

66
To create a release:
7-
- create release branch and wait for release build to complete successfully
8-
- merge release branch to master and wait for master build to complete successfully
9-
- create a release from the master branch using github web page and populate release description using information found on the issues and pull requests for release
7+
- create release branch from development branch and make sure to name the release branch: `release/vX.Y.Z`
8+
- update, commit and push at least one file change in the release branch, to kickoff a Travis build
9+
- wait for th build to complete successfully
10+
- merge the release branch to master and wait for master build to complete successfully
11+
- create a release from the master branch using [github releases page](https://github.com/utPLSQL/utPLSQL/releases) and populate release description using information found on the issues and pull requests since previous release.
12+
To find issues closed after certain date use [advanced filters](https://help.github.com/articles/searching-issues-and-pull-requests/#search-by-open-or-closed-state)
1013

1114
The following will happen:
12-
- build executed on branch `release/v1.2.3-[something]` updates files `sonar-project.properties`, `VERSION` with project version derived from the release branch name
15+
- build executed on branch `release/vX.Y.Z-[something]` updates files `sonar-project.properties`, `VERSION` with project version derived from the release branch name
1316
- changes to those two files are committed and pushed back to release branch by Travis
1417
- when a release is created, a new tag is added in on the repository and a tag build is executed
1518
- the documentation for new release is published on `utplsql.github.io` and installation archives are added to the tag.
1619

1720
Note:
18-
The released version does not provide access to un-versioned source files (the default zip file from GitHub is empty).
1921
The sources for release are provided in separate zip files delivered from the Travis build process.
20-
This is because we do not keep version in our source files in develop branch.
22+
The built zip files include HTML documentation generated from MD files.

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The framework follows industry standards and best patterns of modern Unit Testin
1616
- [Using reporters](userguide/reporters.md)
1717
- [Reporting errors](userguide/exception-reporting.md)
1818
- [Code coverage](userguide/coverage.md)
19-
- [Cheat-sheet](https://www.cheatography.com/jgebal/cheat-sheets/utplsql-v3/#downloads)
19+
- [Cheat-sheet](https://www.cheatography.com/jgebal/cheat-sheets/utplsql-v3-1-2/#downloads)
2020
- About
2121
- [Project Details](about/project-details.md)
2222
- [License](about/license.md)

docs/userguide/annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We strongly recommend putting package level annotations at the very top of packa
2121
| `--%suitepath(<path>)` | Package | Similar to java package. The annotation allows logical grouping of suites into hierarchies. |
2222
| `--%displayname(<description>)` | Package/procedure | Human-readable and meaningful description of a suite/test. `%displayname(Name of the suite/test)`. The annotation is provided for flexibility and convenience only. It has exactly the same meaning as `<description>` in `test` and `suite` annotations. If description is provided using both `suite`/`test` and `displayname`, then the one defined as last takes precedence. |
2323
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can by provided (see `displayname`). |
24-
| `--%throws(<exception|>[,...])`| Procedure | Denotes that the annotated test procedure must throw one of the exceptions provided. Supported forms of exceptions are: numeric literals, numeric contant names, exception constant names, predefined Oracle exception names. |
24+
| `--%throws(<exception>[,...])`| Procedure | Denotes that the annotated test procedure must throw one of the exceptions provided. Supported forms of exceptions are: numeric literals, numeric contant names, exception constant names, predefined Oracle exception names. |
2525
| `--%beforeall` | Procedure | Denotes that the annotated procedure should be executed once before all elements of the suite. |
2626
| `--%beforeall([[<owner>.]<package>.]<procedure>[,...])` | Package | Denotes that the mentioned procedure(s) should be executed once before all elements of the suite. |
2727
| `--%afterall` | Procedure | Denotes that the annotated procedure should be executed once after all elements of the suite. |

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Published releases are available for download on the [utPLSQL GitHub Releases Pa
4545

4646
Full documentation of the project is automatically published on [utPLSQL github pages](https://utplsql.github.io/utPLSQL/)
4747

48-
[Cheat-sheet](https://www.cheatography.com/jgebal/cheat-sheets/utplsql-v3/#downloads)
48+
[Cheat-sheets](https://www.cheatography.com/jgebal/lists/utplsql-v3-cheat-sheets/)
4949

5050
# Installation
5151

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
sonar.projectKey=utPLSQL
33
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
44
sonar.projectName=utPLSQL
5-
sonar.projectVersion=v3.1.2-develop
5+
sonar.projectVersion=v3.1.2
66

77
# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
88
# Since SonarQube 4.2, this property is optional if sonar.modules is set.

source/core/ut_utils.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ create or replace package ut_utils authid definer is
2121
*
2222
*/
2323

24-
gc_version constant varchar2(50) := 'v3.1.2.2125-develop';
24+
gc_version constant varchar2(50) := 'v3.1.2.2130';
2525

2626
/* Constants: Event names */
2727
subtype t_event_name is varchar2(30);

test/core/test_output_buffer.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ create or replace package body test_output_buffer is
6060
l_duration := localtimestamp - l_start;
6161

6262
ut.expect(l_result).to_equal(l_expected);
63-
ut.expect(l_duration).to_be_greater_than(interval '1' second);
63+
ut.expect(l_duration).to_be_greater_than(interval '0.99' second);
6464
select count(1) into l_remaining from ut3.ut_output_buffer_tmp where output_id = l_buffer.output_id;
6565

6666
ut.expect(l_remaining).to_equal(0);

0 commit comments

Comments
 (0)