Skip to content

Commit f3d9261

Browse files
committed
Publish 0.4.0
SHA256 hashes: quetz_client-0.4.0-py3-none-any.whl: 7407767d32e8401c14f5c39166ca8f99fd13d7923bd675bd0df440dc0eef7513 quetz_client-0.4.0.tar.gz: e4a7a5bf437bd372f773e286426d970583e2c5c658190d48eb8002862f0a741f
1 parent bc99296 commit f3d9261

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.4.0
6+
7+
([Full Changelog](https://github.com/mamba-org/quetz-client/compare/v0.3.0...bc99296b0869f015145a3e80874c719852d23cf3))
8+
9+
### Enhancements made
10+
11+
- Add flag for HTTP retries to CLI tool [#23](https://github.com/mamba-org/quetz-client/pull/23) ([@borchero](https://github.com/borchero))
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-04-06&to=2023-04-07&type=c))
16+
17+
[@borchero](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Aborchero+updated%3A2023-04-06..2023-04-07&type=Issues)
18+
19+
<!-- <END NEW CHANGELOG ENTRY> -->
20+
521
## 0.3.0
622

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

1733
[@borchero](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Aborchero+updated%3A2023-03-07..2023-04-06&type=Issues) | [@janjagusch](https://github.com/search?q=repo%3Amamba-org%2Fquetz-client+involves%3Ajanjagusch+updated%3A2023-03-07..2023-04-06&type=Issues)
1834

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

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

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.3.0"
36+
current = "0.4.0"
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, 3, 0, "", "")
1+
version_info = (0, 4, 0, "", "")
22
__version__ = ".".join(filter(lambda s: len(s) > 0, map(str, version_info)))

0 commit comments

Comments
 (0)