Skip to content
This repository has been archived by the owner on Sep 9, 2024. It is now read-only.

Commit

Permalink
Set version to 7.1.0 and fix publishing (#385)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbenita-Cyberark authored Dec 22, 2021
1 parent bd5e883 commit 70b05d6
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## [7.1.1] - 2021-12-21
## [7.1.0] - 2021-12-22

### Added
- `Init` command is now strict to run in one of three modes described in `SslVerificationMode` enum
Expand Down Expand Up @@ -116,8 +116,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- The first tagged version.

[Unreleased]: https://github.com/conjurinc/conjur-api-python3/compare/v7.1.1...HEAD
[7.1.1]: https://github.com/conjurinc/conjur-api-python3/compare/v7.0.1...v7.1.1
[Unreleased]: https://github.com/conjurinc/conjur-api-python3/compare/v7.1.0...HEAD
[7.1.0]: https://github.com/conjurinc/conjur-api-python3/compare/v7.0.1...v7.1.0
[7.0.1]: https://github.com/conjurinc/conjur-api-python3/compare/v0.1.1...v7.0.1
[0.1.1]: https://github.com/conjurinc/conjur-api-python3/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/conjurinc/conjur-api-python3/compare/v0.0.5...v0.1.0
Expand Down
24 changes: 24 additions & 0 deletions Dockerfile.publish
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
FROM ubuntu:21.10
ENV INSTALL_DIR=/opt/conjur-api-python3
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get install -y bash \
binutils \
build-essential \
curl \
git \
jq \
libffi-dev \
libssl-dev \
python3 \
python3-dev \
python3-pip \
zlib1g-dev

RUN mkdir -p $INSTALL_DIR
WORKDIR $INSTALL_DIR

COPY ./requirements.txt $INSTALL_DIR/
RUN pip3 install -r requirements.txt

COPY . $INSTALL_DIR
2 changes: 1 addition & 1 deletion conjur/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@
is intended to be reused in multiple places.
"""

__version__ = '7.1.1'
__version__ = '7.1.0'

0 comments on commit 70b05d6

Please sign in to comment.