Skip to content

Commit

Permalink
Fix LIBPATCH for mongodb_tls.py (#174)
Browse files Browse the repository at this point in the history
Otherwise charming-actions/release-libraries cannot publish it:

> /snap/bin/charmcraft publish-lib charms.mongodb.v0.mongodb_tls
> ...
> mongodb_tls will be updated from 0.3 to 0.5
> ...
> Library charms.mongodb.v0.mongodb_tls has a wrong LIBPATCH number,
> it's too high and needs to be consecutive, Charmhub highest version is
0.3.
  • Loading branch information
taurus-forever authored Feb 27, 2023
1 parent 920a203 commit 380f37e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/charms/mongodb/v0/mongodb_tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

# Increment this PATCH version before using `charmcraft publish-lib` or reset
# to 0 if you are raising the major API version
LIBPATCH = 5
LIBPATCH = 4


logger = logging.getLogger(__name__)
Expand Down

0 comments on commit 380f37e

Please sign in to comment.