Skip to content

Commit 8000869

Browse files
committed
🥚 :ferris_sheel: release 0.0.2
1 parent e7f2b70 commit 8000869

File tree

10 files changed

+25
-13
lines changed

10 files changed

+25
-13
lines changed

.github/workflows/moban-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
python-version: '3.7'
1515
- name: check changes
1616
run: |
17-
pip install moban gitfs2 pypifs
17+
pip install moban gitfs2 pypifs moban-ansible
1818
moban -m mobanfile
1919
git status
2020
git diff --exit-code

.isort.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
line_length=79
33
# Ignore generated files
44
skip=setup.py, /__init__.py
5-
known_third_party=mock, nose
5+
known_third_party=moban>=0.8.1,mock, nose
66
indent=' '
77
multi_line_output=3
88
length_sort=1

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ stages:
2828
env:
2929
- MINREQ=0
3030
stage: moban
31-
install: pip install moban>=0.0.4 gitfs2 pypifs
31+
install: pip install moban gitfs2 pypifs moban-jinja2-github moban-ansible
3232
script:
3333
- moban -f mobanfile
3434
- git diff --exit-code

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
33

4+
0.0.2 - 04.09.2020
5+
--------------------------------------------------------------------------------
6+
7+
**added**
8+
9+
#. `#1 <https://github.com/moremoban/moban-ansible/issues/1>`_: three parameters
10+
supported in lineinfile module of ansible
11+
412
0.0.1 - 02.09.2020
513
--------------------------------------------------------------------------------
614

Pipfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ name = 'pypi'
77
python_version= '3.6'
88

99
[packages]
10+
moban = '>=0.8.1'
1011

1112
[dev-packages]
1213
nose = "*"

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
copyright = ''
2121
author = 'chfw'
2222
# The short X.Y version
23-
version = '0.0.1'
23+
version = '0.0.2'
2424
# The full version, including alpha/beta/rc tags
25-
release = '0.0.1'
25+
release = '0.0.2'
2626

2727
# -- General configuration ---------------------------------------------------
2828

moban_ansible/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.1"
1+
__version__ = "0.0.2"
22
__author__ = "chfw"

mobanfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
configuration:
22
template_dir:
3-
- "pypi://pypi-mobans-pkg/resources/templates"
4-
- "pypi://pypi-mobans-pkg/resources/statics"
3+
- "git://github.com/moremoban/pypi-mobans.git?submodule=true&brach=dev!/templates"
4+
- "git://github.com/moremoban/pypi-mobans.git?submodule=true&brach=dev!/statics"
55
- ".moban.d"
66
configuration: moban-ansible.yml
77
targets:

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moban>=0.8.1

setup.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "moban-ansible"
3434
AUTHOR = "chfw"
35-
VERSION = "0.0.1"
35+
VERSION = "0.0.2"
3636
3737
LICENSE = "newbsd"
3838
DESCRIPTION = (
3939
"Ansible filters, tests and utility functions for moban users"
4040
)
4141
URL = "https://github.com/moremoban/moban-ansible"
42-
DOWNLOAD_URL = "%s/archive/0.0.1.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -62,15 +62,17 @@
6262

6363

6464
INSTALL_REQUIRES = [
65+
"moban>=0.8.1",
6566
]
6667
SETUP_COMMANDS = {}
6768

6869
PACKAGES = find_packages(exclude=["ez_setup", "examples", "tests", "tests.*"])
69-
EXTRAS_REQUIRE = {}
70+
EXTRAS_REQUIRE = {
71+
}
7072
# You do not need to read beyond this line
7173
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
72-
GS_COMMAND = ("gs moban-ansible v0.0.1 " +
73-
"Find 0.0.1 in changelog for more details")
74+
GS_COMMAND = ("gs moban-ansible v0.0.2 " +
75+
"Find 0.0.2 in changelog for more details")
7476
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7577
"Please install gease to enable it.")
7678
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)