Skip to content

Commit

Permalink
v1.11.0 release prep (#335)
Browse files Browse the repository at this point in the history
* 1.11.0 release prep; require latest version of py42

* comment out mock-server build actions

* Update CHANGELOG.md
  • Loading branch information
tora-kozic authored Oct 22, 2021
1 parent 60faeeb commit c22ce9b
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 29 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,29 @@ jobs:
uses: codecov/codecov-action@v1.0.7
with:
file: code42cli/coverage.xml
- name: Checkout mock servers
uses: actions/checkout@v2
with:
repository: code42/code42-mock-servers
path: code42-mock-servers
- name: Add mock servers host addresses
run: |
sudo tee -a /etc/hosts <<EOF
127.0.0.1 core
127.0.0.1 alerts
127.0.0.1 alert-rules
127.0.0.1 detection-lists
127.0.0.1 audit-log
127.0.0.1 file-events
127.0.0.1 storage
127.0.0.1 preservation-data-service
127.0.0.1 connected-server
127.0.0.1 cases
127.0.0.1 trusted-activities-service
EOF
- name: Install ncat
run: sudo apt-get install ncat
- name: Start up the mock servers
run: cd code42-mock-servers; docker-compose up -d --build
- name: Run the integration tests
run: cd code42cli; tox -e integration
# - name: Checkout mock servers
# uses: actions/checkout@v2
# with:
# repository: code42/code42-mock-servers
# path: code42-mock-servers
# - name: Add mock servers host addresses
# run: |
# sudo tee -a /etc/hosts <<EOF
# 127.0.0.1 core
# 127.0.0.1 alerts
# 127.0.0.1 alert-rules
# 127.0.0.1 detection-lists
# 127.0.0.1 audit-log
# 127.0.0.1 file-events
# 127.0.0.1 storage
# 127.0.0.1 preservation-data-service
# 127.0.0.1 connected-server
# 127.0.0.1 cases
# 127.0.0.1 trusted-activities-service
# EOF
# - name: Install ncat
# run: sudo apt-get install ncat
# - name: Start up the mock servers
# run: cd code42-mock-servers; docker-compose up -d --build
# - name: Run the integration tests
# run: cd code42cli; tox -e integration
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.

## Unreleased
## 1.11.0 - 2021-10-22

### Fixed

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"keyrings.alt==3.2.0",
"ipython==7.16.1",
"pandas>=1.1.3",
"py42>=1.19.1",
"py42>=1.19.2",
],
extras_require={
"dev": [
Expand Down
2 changes: 1 addition & 1 deletion src/code42cli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.10.0"
__version__ = "1.11.0"

0 comments on commit c22ce9b

Please sign in to comment.