Skip to content

Commit

Permalink
🥚 :ferris_sheel: release 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Sep 4, 2020
1 parent e7f2b70 commit 8000869
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/moban-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
python-version: '3.7'
- name: check changes
run: |
pip install moban gitfs2 pypifs
pip install moban gitfs2 pypifs moban-ansible
moban -m mobanfile
git status
git diff --exit-code
Expand Down
2 changes: 1 addition & 1 deletion .isort.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
line_length=79
# Ignore generated files
skip=setup.py, /__init__.py
known_third_party=mock, nose
known_third_party=moban>=0.8.1,mock, nose
indent=' '
multi_line_output=3
length_sort=1
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ stages:
env:
- MINREQ=0
stage: moban
install: pip install moban>=0.0.4 gitfs2 pypifs
install: pip install moban gitfs2 pypifs moban-jinja2-github moban-ansible
script:
- moban -f mobanfile
- git diff --exit-code
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.2 - 04.09.2020
--------------------------------------------------------------------------------

**added**

#. `#1 <https://github.com/moremoban/moban-ansible/issues/1>`_: three parameters
supported in lineinfile module of ansible

0.0.1 - 02.09.2020
--------------------------------------------------------------------------------

Expand Down
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ name = 'pypi'
python_version= '3.6'

[packages]
moban = '>=0.8.1'

[dev-packages]
nose = "*"
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
copyright = ''
author = 'chfw'
# The short X.Y version
version = '0.0.1'
version = '0.0.2'
# The full version, including alpha/beta/rc tags
release = '0.0.1'
release = '0.0.2'

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

Expand Down
2 changes: 1 addition & 1 deletion moban_ansible/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.0.1"
__version__ = "0.0.2"
__author__ = "chfw"
4 changes: 2 additions & 2 deletions mobanfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
configuration:
template_dir:
- "pypi://pypi-mobans-pkg/resources/templates"
- "pypi://pypi-mobans-pkg/resources/statics"
- "git://github.com/moremoban/pypi-mobans.git?submodule=true&brach=dev!/templates"
- "git://github.com/moremoban/pypi-mobans.git?submodule=true&brach=dev!/statics"
- ".moban.d"
configuration: moban-ansible.yml
targets:
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
moban>=0.8.1
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@

NAME = "moban-ansible"
AUTHOR = "chfw"
VERSION = "0.0.1"
VERSION = "0.0.2"
EMAIL = "[email protected]"
LICENSE = "newbsd"
DESCRIPTION = (
"Ansible filters, tests and utility functions for moban users"
)
URL = "https://github.com/moremoban/moban-ansible"
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL
FILES = ["README.rst", "CHANGELOG.rst"]
KEYWORDS = [
"python",
Expand All @@ -62,15 +62,17 @@


INSTALL_REQUIRES = [
"moban>=0.8.1",
]
SETUP_COMMANDS = {}

PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"])
EXTRAS_REQUIRE = {}
EXTRAS_REQUIRE = {
}
# 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 moban-ansible v0.0.1 " +
"Find 0.0.1 in changelog for more details")
GS_COMMAND = ("gs moban-ansible v0.0.2 " +
"Find 0.0.2 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 8000869

Please sign in to comment.