Skip to content

Commit

Permalink
💎 release 0.0.7.
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jul 14, 2019
1 parent d79f851 commit c0727c2
Show file tree
Hide file tree
Showing 8 changed files with 48 additions and 19 deletions.
28 changes: 23 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

sudo: false
dist: xenial
language: python
Expand All @@ -16,34 +15,53 @@ python:
stages:
- test
- lint
- moban

.disable_global: &disable_global
addons: false
cache: false
env: {}
python: false
before_install: false
install: true
install: false
before_script: false
script: false
after_success: false
after_failure: false
before_deploy: false
deploy: false

.lint: &lint
<<: *disable_global
git:
submodules: false
python: 3.6
stage: lint
install: pip install flake8
script: flake8

.moban: &moban
<<: *disable_global
python: 3.6
stage: moban
install: pip install moban>=0.0.4
script:
- moban
- git diff --exit-code

jobs:
include:
- *moban
- *lint

stage: test

script: make test

before_install:
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
mv min_requirements.txt requirements.txt ;
fi
- test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
- test ! -f rnd_requirements.txt ||
pip install --no-deps -r rnd_requirements.txt
- test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
- pip install -r tests/requirements.txt
script:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change log
================================================================================

0.0.7 - 04-05-2019
--------------------------------------------------------------------------------

Updated
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

#. use pypi-mobans version 0.0.7

0.0.5 - 04-05-2019
--------------------------------------------------------------------------------

Expand Down
6 changes: 6 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: "pypi-mobans"
organisation: moremoban
releases:
- changes:
- action: Updated
details:
- use pypi-mobans version 0.0.7
date: 04-05-2019
version: 0.0.7
- changes:
- action: Updated
details:
Expand Down
7 changes: 2 additions & 5 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@
copyright = '2018-2019 Onni Software Ltd. and its contributors'
author = 'C.W.'
# The short X.Y version
version = '0.0.5'
version = '0.0.7'
# The full version, including alpha/beta/rc tags
release = '0.0.5'
release = '0.0.7'

# -- General configuration ---------------------------------------------------

Expand All @@ -39,9 +39,6 @@
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

# The master toctree document.
master_doc = ''

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
#
Expand Down
6 changes: 3 additions & 3 deletions pypi-mobans-pkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ organisation: "moremoban"
author: "C.W."
contact: "[email protected]"
company: "Onni Software Ltd. and its contributors"
version: "0.0.5"
current_version: "0.0.5"
release: "0.0.5"
version: "0.0.7"
current_version: "0.0.7"
release: "0.0.7"
copyright_year: 2018-2019
license: public license
dependencies:
Expand Down
2 changes: 1 addition & 1 deletion pypi_mobans_pkg/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.5"
__version__ = "0.0.7"
__author__ = "C.W."
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@

NAME = "pypi-mobans-pkg"
AUTHOR = "C.W."
VERSION = "0.0.5"
VERSION = "0.0.7"
EMAIL = "[email protected]"
LICENSE = "public license"
DESCRIPTION = (
"Scaffolding mobans for your Python project."
)
URL = "https://github.com/moremoban/pypi-mobans-pkg"
DOWNLOAD_URL = "%s/archive/0.0.5.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.0.7.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand Down Expand Up @@ -70,8 +70,8 @@
}
# You do not need to read beyond this line
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.5 " +
"Find 0.0.5 in changelog for more details")
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.7 " +
"Find 0.0.7 in changelog for more details")
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
"Please install gease to enable it.")
UPLOAD_FAILED_MSG = (
Expand Down

0 comments on commit c0727c2

Please sign in to comment.