Skip to content

Commit 00a0a7c

Browse files
committed
Publish 0.2.1
SHA256 hashes: quetz_client-0.2.1-py3-none-any.whl: 844bcebdc0df1c208ec14f0dea7fb0e3ef8c2ba48946894039148a251e6a9f11 quetz_client-0.2.1.tar.gz: aec9d50f8beb3ff0db86e62cbd5c0aeec42b5ba1c5ada9eb0d54c2d1e5b5f00b
1 parent 0b113b4 commit 00a0a7c

File tree

3 files changed

+18
-4
lines changed

3 files changed

+18
-4
lines changed

CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
<!-- <START NEW CHANGELOG ENTRY> -->
44

5+
## 0.2.1
6+
7+
([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.2.0...0b113b47da3c1d319dc2724d16f861f49690cbe1))
8+
9+
### Maintenance and upkeep improvements
10+
11+
- Add tests against live `quetz` [#2](https://github.com/mamba-org/quetz-client/pull/2) ([@simonbohnen](https://github.com/simonbohnen))
12+
13+
### Contributors to this release
14+
15+
([GitHub contributors page for this release](https://github.com/mamba-org/quetz-client/graphs/contributors?from=2023-02-28&to=2023-03-07&type=c))
16+
17+
[@simonbohnen](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Asimonbohnen+updated%3A2023-02-28..2023-03-07&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 0.2.0
622

723
([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.1.2...310e0f6d1df636e97ba43099f297f5a4102bfe86))
@@ -16,8 +32,6 @@
1632

1733
[@simonbohnen](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Asimonbohnen+updated%3A2023-02-17..2023-02-28&type=Issues)
1834

19-
<!-- <END NEW CHANGELOG ENTRY> -->
20-
2135
## 0.1.2
2236

2337
([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.1.1...b844539c779a3014c55c8d942d5c5f8b91ba0bc6))

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ check_untyped_defs = true
3333
addopts = "--import-mode=importlib"
3434

3535
[tool.tbump.version]
36-
current = "0.2.0"
36+
current = "0.2.1"
3737
regex = '''
3838
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
3939
((?P<channel>a|b|rc|.dev)(?P<release>\d+))?

src/quetz_client/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
version_info = (0, 2, 0, "", "")
1+
version_info = (0, 2, 1, "", "")
22
__version__ = ".".join(filter(lambda s: len(s) > 0, map(str, version_info)))

0 commit comments

Comments
 (0)