Skip to content

Commit c31aa29

Browse files
authored
Merge branch 'main' into va_v4
2 parents 2625507 + cadf52b commit c31aa29

File tree

9 files changed

+6962
-430
lines changed

9 files changed

+6962
-430
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.0.8
2+
current_version = 0.0.9
33
commit = True
44
message = Update version {current_version} -> {new_version}
55

.travis.yml

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
language: python
2+
python:
3+
- '3.7'
4+
- '3.8'
5+
- '3.9'
6+
- '3.10'
7+
- '3.11'
28

3-
dist: xenial
9+
dist: focal
410

511
cache: pip
612

@@ -10,7 +16,10 @@ notifications:
1016
matrix:
1117
include:
1218
- python: 3.7
19+
- python: 3.8
1320
- python: 3.9
21+
- python: 3.10
22+
- python: 3.11
1423

1524
before_install:
1625
- npm install npm@latest -g
@@ -29,19 +38,30 @@ script: tox
2938
# To enable semantic-release, uncomment these sections.
3039
before_deploy:
3140
- pip install bump2version
32-
- nvm install 14
41+
- nvm install lts/*
3342
- npm install @semantic-release/changelog
3443
- npm install @semantic-release/exec
3544
- npm install @semantic-release/git
3645
- npm install @semantic-release/github
37-
46+
- npx semantic-release
3847
deploy:
3948
- provider: script
40-
script: npx semantic-release
49+
script:
50+
- npx semantic-release
4151
skip_cleanup: true
4252
on:
43-
python: '3.7'
4453
branch: main
54+
# only on 1 matrix job
55+
python: '3.7'
56+
# ensure semantic-release is functional
57+
- provider: script
58+
script:
59+
- npx semantic-release --dry-run
60+
skip_cleanup: true
61+
on:
62+
all_branches: true
63+
# only on 1 matrix job
64+
python: '3.7'
4565
- provider: pypi
4666
user: __token__
4767
password: $PYPI_TOKEN

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [0.0.9](https://github.com/IBM/container-registry-python-sdk/compare/v0.0.8...v0.0.9) (2023-06-20)
2+
3+
4+
### Bug Fixes
5+
6+
* **container_registry_v1:** fix linter ([1fe59c5](https://github.com/IBM/container-registry-python-sdk/commit/1fe59c5bcc10fdce4d7e0aae1e1b7fdf16ae4fe6))
7+
* **container_registry_v1:** Fix test_get_image_manifest to correctly convert type if not dict ([293dc56](https://github.com/IBM/container-registry-python-sdk/commit/293dc56b77a5e33d381bd3a8438c5c93b53fb5c5))
8+
19
## [0.0.8](https://github.com/IBM/container-registry-python-sdk/compare/v0.0.7...v0.0.8) (2022-08-11)
210

311

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ Service Name | Imported Class Name
5656
To install, use `pip` or `easy_install`:
5757

5858
```bash
59-
pip install --upgrade "ibm-container-registry>=0.0.8"
59+
pip install --upgrade "ibm-container-registry>=0.0.9"
6060
```
6161

6262
or
6363

6464
```bash
65-
easy_install --upgrade "ibm-container-registry>=0.0.8"
65+
easy_install --upgrade "ibm-container-registry>=0.0.9"
6666
```
6767

6868
## Using the SDK

ibm_container_registry/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
"""
1818
Version of ibm_container_registry
1919
"""
20-
__version__ = '0.0.8'
20+
__version__ = '0.0.9'

0 commit comments

Comments
 (0)