Skip to content

Commit 42a1d43

Browse files
committed
🤝 update meta data
1 parent 1068e7f commit 42a1d43

File tree

6 files changed

+16
-9
lines changed

6 files changed

+16
-9
lines changed

.github/workflows/moban-update.yml

+1-1
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-jinja2-github
1818
moban
1919
git status
2020
git diff --exit-code

.travis.yml

+1-1
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>=0.0.4 gitfs2 pypifs moban-jinja2-github
3232
script:
3333
- moban
3434
- git diff --exit-code

CHANGELOG.rst

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Change log
22
================================================================================
33

4+
0.0.3 - 02.09.2020
5+
--------------------------------------------------------------------------------
6+
7+
**added**
8+
9+
#. moban.plugins.jinja2.filters.github is moved here
10+
411
0.0.2 - 28.08.2020
512
--------------------------------------------------------------------------------
613

docs/source/conf.py

+2-2
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.2'
23+
version = '0.0.3'
2424
# The full version, including alpha/beta/rc tags
25-
release = '0.0.2'
25+
release = '0.0.3'
2626

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

moban_jinja2_github/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.2"
1+
__version__ = "0.0.3"
22
__author__ = "chfw"

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@
3232

3333
NAME = "moban-jinja2-github"
3434
AUTHOR = "chfw"
35-
VERSION = "0.0.2"
35+
VERSION = "0.0.3"
3636
3737
LICENSE = "newbsd"
3838
DESCRIPTION = (
3939
"Github specific filters, tests and globals"
4040
)
4141
URL = "https://github.com/moremoban/moban-jinja2-github"
42-
DOWNLOAD_URL = "%s/archive/0.0.2.tar.gz" % URL
42+
DOWNLOAD_URL = "%s/archive/0.0.3.tar.gz" % URL
4343
FILES = ["README.rst", "CHANGELOG.rst"]
4444
KEYWORDS = [
4545
"python",
@@ -71,8 +71,8 @@
7171
}
7272
# You do not need to read beyond this line
7373
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
74-
GS_COMMAND = ("gs moban-jinja2-github v0.0.2 " +
75-
"Find 0.0.2 in changelog for more details")
74+
GS_COMMAND = ("gs moban-jinja2-github v0.0.3 " +
75+
"Find 0.0.3 in changelog for more details")
7676
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7777
"Please install gease to enable it.")
7878
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)