File tree Expand file tree Collapse file tree 9 files changed +6962
-430
lines changed Expand file tree Collapse file tree 9 files changed +6962
-430
lines changed Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.0.8
2
+ current_version = 0.0.9
3
3
commit = True
4
4
message = Update version {current_version} -> {new_version}
5
5
Original file line number Diff line number Diff line change 1
1
language : python
2
+ python :
3
+ - ' 3.7'
4
+ - ' 3.8'
5
+ - ' 3.9'
6
+ - ' 3.10'
7
+ - ' 3.11'
2
8
3
- dist : xenial
9
+ dist : focal
4
10
5
11
cache : pip
6
12
@@ -10,7 +16,10 @@ notifications:
10
16
matrix :
11
17
include :
12
18
- python : 3.7
19
+ - python : 3.8
13
20
- python : 3.9
21
+ - python : 3.10
22
+ - python : 3.11
14
23
15
24
before_install :
16
25
- npm install npm@latest -g
@@ -29,19 +38,30 @@ script: tox
29
38
# To enable semantic-release, uncomment these sections.
30
39
before_deploy :
31
40
- pip install bump2version
32
- - nvm install 14
41
+ - nvm install lts/*
33
42
- npm install @semantic-release/changelog
34
43
- npm install @semantic-release/exec
35
44
- npm install @semantic-release/git
36
45
- npm install @semantic-release/github
37
-
46
+ - npx semantic-release
38
47
deploy :
39
48
- provider : script
40
- script : npx semantic-release
49
+ script :
50
+ - npx semantic-release
41
51
skip_cleanup : true
42
52
on :
43
- python : ' 3.7'
44
53
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'
45
65
- provider : pypi
46
66
user : __token__
47
67
password : $PYPI_TOKEN
Original file line number Diff line number Diff line change
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
+
1
9
## [ 0.0.8] ( https://github.com/IBM/container-registry-python-sdk/compare/v0.0.7...v0.0.8 ) (2022-08-11)
2
10
3
11
Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ Service Name | Imported Class Name
56
56
To install, use ` pip ` or ` easy_install ` :
57
57
58
58
``` bash
59
- pip install --upgrade " ibm-container-registry>=0.0.8 "
59
+ pip install --upgrade " ibm-container-registry>=0.0.9 "
60
60
```
61
61
62
62
or
63
63
64
64
``` bash
65
- easy_install --upgrade " ibm-container-registry>=0.0.8 "
65
+ easy_install --upgrade " ibm-container-registry>=0.0.9 "
66
66
```
67
67
68
68
## Using the SDK
Original file line number Diff line number Diff line change 17
17
"""
18
18
Version of ibm_container_registry
19
19
"""
20
- __version__ = '0.0.8 '
20
+ __version__ = '0.0.9 '
You can’t perform that action at this time.
0 commit comments