Skip to content

Commit

Permalink
Release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Aug 8, 2019
1 parent e4dd353 commit ae781b0
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ travis_yml:
python: 3.7
dist: xenial # currently only xenial has python 3.7
- script: docs
pypi_user: tbekolay
deploy_dists:
- sdist
- bdist_wheel

ci_scripts:
- template: static
Expand All @@ -70,6 +74,7 @@ ci_scripts:
output_name: test-coverage
coverage: true
- template: docs
- template: deploy

codecov_yml: {}

Expand Down
21 changes: 21 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,27 @@ jobs:
apt:
packages:
- pandoc
- stage: deploy
if: branch =~ ^release-candidate-* OR tag =~ ^v[0-9]*
env: SCRIPT="deploy"
cache: false
deploy:
- provider: pypi
server: https://test.pypi.org/legacy/
user: tbekolay
password: $PYPI_TOKEN
distributions: "sdist bdist_wheel "
on:
all_branches: true
condition: $TRAVIS_BRANCH =~ ^release-candidate-*
condition: $TRAVIS_TAG = ""
- provider: pypi
user: tbekolay
password: $PYPI_TOKEN
distributions: "sdist bdist_wheel "
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^v[0-9]*

before_install:
# export travis_terminate for use in scripts
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release History
- Removed
- Fixed
1.0.0 (unreleased)
==================
1.0.0 (August 8, 2019)
======================

Initial release of ``pytest-rng``!
Thanks to all of the contributors for making this possible!
2 changes: 1 addition & 1 deletion pytest_rng/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

name = "pytest_rng"
version_info = (1, 0, 0) # (major, minor, patch)
dev = 0
dev = None

version = "{v}{dev}".format(
v=".".join(str(v) for v in version_info),
Expand Down

0 comments on commit ae781b0

Please sign in to comment.