Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.21.0
current_version = 0.22.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<revision>\d+)
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [0.22.0] - 2020-06-05

### Added

- Support for (C/C++) Conan packages.

**Note:** This release pins the Cloudsmith API library to version 0.51 due to
changes in the versioning of the library. If you're having issues with an older
version of the CLI that installs the latest API, please upgrade your CLI
version, or install `cloudsmith-api==0.51.22`.

## [0.21.0] - 2020-04-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion cloudsmith_cli/data/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.21.0
0.22.0
2 changes: 1 addition & 1 deletion requirements/common.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ click>=7.0
click-configfile==0.2.3
click-didyoumean==0.0.3
click-spinner==0.1.7
cloudsmith-api>=0.49.9
cloudsmith-api>=0.51.22
colorama==0.3.9
future>=0.16.0,<1.0.0
requests>=2.18.4,<3.0.0
Expand Down
2 changes: 1 addition & 1 deletion requirements/development.py2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ click-configfile==0.2.3
click-didyoumean==0.0.3
click-spinner==0.1.7
click==7.0
cloudsmith-api==0.49.9
cloudsmith-api==0.51.22
codecov==2.0.15
colorama==0.3.9
configparser==3.7.4 # via click-configfile, entrypoints, flake8, importlib-metadata, pylint
Expand Down
2 changes: 1 addition & 1 deletion requirements/development.py3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ click-configfile==0.2.3
click-didyoumean==0.0.3
click-spinner==0.1.7
click==7.0
cloudsmith-api==0.49.9
cloudsmith-api==0.51.22
codecov==2.0.15
colorama==0.3.9
configparser==3.7.4 # via click-configfile
Expand Down
2 changes: 1 addition & 1 deletion requirements/production.py2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ click-configfile==0.2.3
click-didyoumean==0.0.3
click-spinner==0.1.7
click==7.0
cloudsmith-api==0.49.9
cloudsmith-api==0.51.22
colorama==0.3.9
configparser==3.7.4 # via click-configfile
future==0.17.1
Expand Down
2 changes: 1 addition & 1 deletion requirements/production.py3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ click-configfile==0.2.3
click-didyoumean==0.0.3
click-spinner==0.1.7
click==7.0
cloudsmith-api==0.49.9
cloudsmith-api==0.51.22
colorama==0.3.9
configparser==3.7.4 # via click-configfile
future==0.17.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def get_long_description():
"click-configfile>=0.2.3",
"click-didyoumean>=0.0.3",
"click-spinner>=0.1.7",
"cloudsmith-api>=0.0,<1.0", # Compatible with 0.* upto (but excluding) 1.0+
"cloudsmith-api>=0.51.22,<1.0", # Compatible with 0.51.22 upto (but excluding) 1.0+
"colorama>=0.3.9",
"future>=0.16.0",
"requests>=2.18.4",
Expand Down