Skip to content

Commit bb3a89f

Browse files
authored
Merge branch 'master' into DOCS-147-link-to-docs
2 parents 5d38da4 + 1eeccee commit bb3a89f

8 files changed

Lines changed: 34 additions & 13 deletions

File tree

.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 = 1.8.2
2+
current_version = 1.8.4
33
commit = True
44
tag = True
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<revision>\d+)

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
permissions:
99
id-token: write
10-
contents: read
10+
contents: write
1111
jobs:
1212
build:
1313
runs-on: ubuntu-latest
@@ -68,4 +68,4 @@ jobs:
6868
run: |
6969
docker tag docker.cloudsmith.io/${{ vars.CLOUDSMITH_NAMESPACE }}/cli-zipapp/cloudsmith-cli:${{ env.VERSION }} cloudsmith/cloudsmith-cli:${{ env.VERSION }}
7070
echo "${{ secrets.DOCKERHUB_PAT }}" | docker login -u ${{ vars.DOCKERHUB_USER }} --password-stdin
71-
docker push cloudsmith/cloudsmith-cli:${{ env.VERSION }}
71+
docker push cloudsmith/cloudsmith-cli:${{ env.VERSION }}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [1.8.4] - 2025-10-06
11+
12+
### Added
13+
14+
- Support for Conda, Cargo, Go, and Hugging Face upstreams ([#214](https://github.com/cloudsmith-io/cloudsmith-cli/pull/214))
15+
16+
## [1.8.3] - 2025-06-02
17+
18+
- Added 'swift' and 'hex' as available upstream formats.
19+
20+
## [1.8.2] - 2025-06-02
21+
22+
- Make an sdist available as part of the release.
23+
24+
## [1.8.1] - 2025-05-07
25+
26+
- Fix bug that caused configuration to be dropped in the authenticate command.
27+
- Fix bug in the default configuration schema.
28+
1029
## [1.8.0] - 2025-05-02
1130

1231
### Added

CONTRIBUTORS.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Maintainers
22

3-
The following maintainers manage the project and are reponsible for reviewing/merging code:
4-
5-
- Lee Skillen ([@lskillen](https://github.com/lskillen)) - [Cloudsmith Ltd](https://cloudsmith.io)
6-
- Paddy Carey ([@paddycarey](https://github.com/paddycarey)) - [Cloudsmith Ltd](https://cloudsmith.io)
3+
The project is maintained by the Cloudsmith team.
74

5+
Any member of the Cloudsmith organization may review and approve contributions.
86

97
# Contributors
108

cloudsmith_cli/cli/commands/upstream.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,23 @@
1717
from .main import main
1818

1919
UPSTREAM_FORMATS = [
20+
"cargo",
21+
"conda",
22+
"cran",
2023
"dart",
2124
"deb",
2225
"docker",
26+
"go",
2327
"helm",
28+
"hex",
29+
"huggingface",
2430
"maven",
25-
"nuget",
2631
"npm",
32+
"nuget",
2733
"python",
2834
"rpm",
2935
"ruby",
30-
"cran",
3136
"swift",
32-
"hex",
3337
]
3438

3539

cloudsmith_cli/data/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.8.2
1+
1.8.4

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ click-didyoumean==0.3.1
3434
# via cloudsmith-cli (setup.py)
3535
click-spinner==0.1.10
3636
# via cloudsmith-cli (setup.py)
37-
cloudsmith-api==2.0.18
37+
cloudsmith-api==2.0.22
3838
# via cloudsmith-cli (setup.py)
3939
configparser==7.1.0
4040
# via click-configfile

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def get_long_description():
5353
"click-configfile>=0.2.3",
5454
"click-didyoumean>=0.0.3",
5555
"click-spinner>=0.1.7",
56-
"cloudsmith-api>=2.0.18,<3.0", # Compatible upto (but excluding) 3.0+
56+
"cloudsmith-api>=2.0.22,<3.0", # Compatible upto (but excluding) 3.0+
5757
"keyring>=25.4.1",
5858
"requests>=2.18.4",
5959
"requests_toolbelt>=0.8.0",

0 commit comments

Comments
 (0)