Skip to content

Commit 90dca47

Browse files
committed
release v1.0.0
1 parent c837a15 commit 90dca47

File tree

8 files changed

+26
-13
lines changed

8 files changed

+26
-13
lines changed

.github/workflows/additional_tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: additional_tests
22
run-name: Run additional tests for API features
33

44
on:
5-
#push:
6-
# branches: [main]
7-
#pull_request:
8-
# branches: [main]
5+
push:
6+
branches: [main]
7+
pull_request:
8+
branches: [main]
99
workflow_dispatch:
1010

1111
env:

.github/workflows/build.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@ name: build
22
run-name: Build package
33

44
on:
5-
#push:
6-
# branches: [main]
7-
#pull_request:
8-
# branches: [main]
5+
push:
6+
branches: [main]
7+
tags: [v1.*, v2.*]
8+
pull_request:
9+
branches: [main]
910
workflow_dispatch:
1011

1112
jobs:

.github/workflows/compatibility_50.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: zabbix_50
22
run-name: Run compatibility with Zabbix 5.0 test
3+
34
on:
5+
push:
6+
branches: [main]
47
pull_request:
58
branches: [main]
69
workflow_dispatch:

.github/workflows/compatibility_60.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: zabbix_60
22
run-name: Run compatibility with Zabbix 6.0 test
3+
34
on:
5+
push:
6+
branches: [main]
47
pull_request:
58
branches: [main]
69
workflow_dispatch:

.github/workflows/compatibility_64.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: zabbix_64
22
run-name: Run compatibility with Zabbix 6.4 test
3+
34
on:
5+
push:
6+
branches: [main]
47
pull_request:
58
branches: [main]
69
workflow_dispatch:

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ name: tests
22
run-name: Library unit-tests on different platforms and versions
33

44
on:
5-
#push:
6-
# branches: [main]
7-
#pull_request:
8-
# branches: [main]
5+
push:
6+
branches: [main]
7+
pull_request:
8+
branches: [main]
99
workflow_dispatch:
1010

1111
jobs:

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## [1.0.0](https://github.com/zabbix/python-zabbix-utils/tree/tag/v1.0.0) (2023-11-17)
2+
3+
Initial release

zabbix_utils/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
2323
# OTHER DEALINGS IN THE SOFTWARE.
2424

25-
__version__ = "0.0.1"
25+
__version__ = "1.0.0"
2626

2727
__min_supported__ = 5.0
2828
__max_supported__ = 7.0

0 commit comments

Comments
 (0)