Skip to content

Commit

Permalink
1.108.0
Browse files Browse the repository at this point in the history
- Fixing previous release where some wheels did not upload to PyPI.
- The previous v1.108.1 and v1.108.0 tags where removed to allow this.
- See release notes.
  • Loading branch information
cjdsellers authored Mar 9, 2021
2 parents 4a1e5e5 + 6af6074 commit 82dd10c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 15 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/test-tag-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,14 +114,9 @@ jobs:
- name: Set output
id: vars
run: |
release = sed -n '/^#/,${p;/^---/q}' RELEASES.md
release="${release//'%'/'%25'}"
release="${release//$'\n'/'%0A'}"
release="${release//$'\r'/'%0D'}"
echo $release
echo "::set-output name=tag_name::v$(poetry version --short)"
echo "::set-output name=release_name::NautilusTrader $(poetry version --short) Beta"
echo "::set-output name=body::$release"
sed -n '/^#/,${p;/^---/q};w RELEASE.md' RELEASES.md
# Create GitHub release
- name: Create release
Expand All @@ -131,13 +126,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
TAG_NAME: ${{ steps.vars.outputs.tag_name }}
RELEASE_NAME: ${{ steps.vars.outputs.release_name }}
BODY: ${{ steps.vars.outputs.body }}
with:
tag_name: ${{ env.TAG_NAME }}
release_name: ${{ env.RELEASE_NAME }}
draft: false
prerelease: false
body: ${{ env.BODY }}
body_path: RELEASE.md


publish_sdist:
Expand Down
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# NautilusTrader 1.108.1 Beta - Release Notes
# NautilusTrader 1.108.0 Beta - Release Notes

This release executes a major refactoring of `Symbol` and how securities are
generally identified within the platform. This will allow a smoother integration
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "nautilus_trader"
version = "1.108.1"
version = "1.108.0"
description = "A high-performance algorithmic trading platform and event-driven backtester"
authors = ["Nautech Systems <[email protected]>"]
license = "LGPL-3.0-or-later"
Expand Down Expand Up @@ -33,7 +33,7 @@ generate-setup-file = false

[tool.poetry.dependencies]
python = "^3.7.9"
ccxt = "^1.42.67"
ccxt = "^1.42.69"
cython = "^3.0a6"
empyrical = "^0.5.5"
ib_insync = "^0.9.65"
Expand Down

0 comments on commit 82dd10c

Please sign in to comment.