Skip to content

Commit

Permalink
Replace snapshot dependencies with releases (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
OptimumCode authored Jan 12, 2024
1 parent e5645b4 commit 565056c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ If you wish to manually create and publish a package for Python:
## Release notes
### 4.3.1
+ Correct dependencies: replace snapshots with release versions
### 4.3.0
+ Update to `th2-grpc-common` version `3.12.0` (added `check_simple_collections_order` parameter to `RootComparisonSettings`).
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ repositories {

dependencies {
api platform('com.exactpro.th2:bom:4.4.0')
api 'com.exactpro.th2:grpc-common:4.4.0-sync-6560421959-ba094c0-SNAPSHOT'
api 'com.exactpro.th2:grpc-common:4.4.0-dev'

api "com.google.protobuf:protobuf-java-util"
api "io.grpc:grpc-stub"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_version=4.3.0
release_version=4.3.1
description='th2 gRPC check1 library'

vcs_url=https://github.com/th2-net/th2-grpc-check1
2 changes: 1 addition & 1 deletion package_info.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"package_name": "th2_grpc_check1",
"package_version": "4.3.0"
"package_version": "4.3.1"
}
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
# See the License for the specific language governing permissions and
# limitations under the License.

th2-grpc-common==4.3.0.dev0
th2-grpc-common==4.4.0rc1
mypy-protobuf==3.4
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def make_packages(root_dir):
license='Apache License 2.0',
python_requires='>=3.7',
install_requires=[
'th2-grpc-common==4.3.0.dev0',
'th2-grpc-common==4.4.0rc1',
'mypy-protobuf==3.4'
],
packages=packages,
Expand Down

0 comments on commit 565056c

Please sign in to comment.