Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Begin 2.2.0 dev #372

Merged
merged 1 commit into from
Nov 27, 2023
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 flintrock/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.1.0'
__version__ = '2.2.0.dev0'
9 changes: 5 additions & 4 deletions make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ aws ec2 describe-images \
"Name=architecture,Values=x86_64" \
--query \
'reverse(sort_by(Images, &CreationDate))[:100].{CreationDate:CreationDate,ImageId:ImageId,Name:Name,Description:Description}'
# - Dependencies: https://requires.io/github/nchammas/flintrock/requirements/?branch=master
# - Dependencies: pip list --outdated
# Run full acceptance tests
# - Run private VPC tests too
# Update Flintrock version
# - flintrock/__init__.py
# - README blurb about standalone version
Expand All @@ -26,7 +27,7 @@ aws ec2 describe-images \

trash dist/ build/ Flintrock.egg-info/

python setup.py sdist bdist_wheel
python -m build

# python setup.py register -r https://testpypi.python.org/pypi

Expand All @@ -43,8 +44,8 @@ python generate-standalone-package.py
# Upload release builds to GitHub
open dist/
# - Wheel
# - OS X standalone package
# - Linux standalone package (published to S3 by CI)
# - macOS standalone package (x86 _and_ arm64?)
# - Linux standalone package (built by CI)
# Update version to next.dev0

# ---
Expand Down
Loading