Skip to content

Commit baff8e2

Browse files
committed
This is an auto-commit
1 parent 22cc430 commit baff8e2

File tree

6 files changed

+24
-14
lines changed

6 files changed

+24
-14
lines changed

CHANGELOG.rst

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

4+
0.0.9 - 17.10.2020
5+
--------------------------------------------------------------------------------
6+
7+
**Updated**
8+
9+
#. return all user details using github token if exist. otherwise use public api
10+
under quota
11+
412
0.0.8 - 21.09.2020
513
--------------------------------------------------------------------------------
614

Makefile

-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,6 @@ test: lint
66
install_test:
77
pip install -r tests/requirements.txt
88

9-
git-diff-check:
10-
git diff --exit-code
11-
129
lint:
1310
bash lint.sh
1411

README.rst

+6
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ gease - gITHUB RELease
1616
.. image:: https://img.shields.io/github/stars/moremoban/gease.svg?style=social&maxAge=3600&label=Star
1717
:target: https://github.com/moremoban/gease/stargazers
1818

19+
.. image:: https://img.shields.io/static/v1?label=continuous%20templating&message=%E6%A8%A1%E7%89%88%E6%9B%B4%E6%96%B0&color=blue&style=flat-square
20+
:target: https://moban.readthedocs.io/en/latest/#at-scale-continous-templating-for-open-source-projects
21+
22+
.. image:: https://img.shields.io/static/v1?label=coding%20style&message=black&color=black&style=flat-square
23+
:target: https://github.com/psf/black
24+
1925

2026

2127
It's understood that you may use github cli, however **gease** simply makes a git release using github api v3.

gease/_version.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.0.8"
2-
__author__ = "C. W."
3-
__description__ = "simply makes a git release using github api v3"
1+
__version__ = '0.0.9'
2+
__author__ = 'C. W.'
3+
__description__ = 'simply makes a git release using github api v3'

lint.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
pip install flake8
2-
flake8 . --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long
3-
python setup.py checkdocs
2+
flake8 --exclude=.moban.d,docs,setup.py --builtins=unicode,xrange,long . && python setup.py checkdocs

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
NAME = "gease"
3434
AUTHOR = "C. W."
35-
VERSION = "0.0.8"
35+
VERSION = "0.0.9"
3636
3737
LICENSE = "MIT"
3838
ENTRY_POINTS = {
@@ -45,7 +45,7 @@
4545
"simply makes a git release using github api v3"
4646
)
4747
URL = "https://github.com/moremoban/gease"
48-
DOWNLOAD_URL = "%s/archive/0.0.8.tar.gz" % URL
48+
DOWNLOAD_URL = "%s/archive/0.0.9.tar.gz" % URL
4949
FILES = ["README.rst", "CHANGELOG.rst"]
5050
KEYWORDS = [
5151
"python",
@@ -78,13 +78,14 @@
7878
}
7979
# You do not need to read beyond this line
8080
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
81-
GS_COMMAND = ("gs gease v0.0.8 " +
82-
"Find 0.0.8 in changelog for more details")
81+
HERE = os.path.abspath(os.path.dirname(__file__))
82+
83+
GS_COMMAND = ("gs gease v0.0.9 " +
84+
"Find 0.0.9 in changelog for more details")
8385
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
8486
"Please install gease to enable it.")
8587
UPLOAD_FAILED_MSG = (
8688
'Upload failed. please run "%s" yourself.' % PUBLISH_COMMAND)
87-
HERE = os.path.abspath(os.path.dirname(__file__))
8889

8990

9091
class PublishCommand(Command):
@@ -130,7 +131,6 @@ def run(self):
130131
"publish": PublishCommand
131132
})
132133

133-
134134
def has_gease():
135135
"""
136136
test if github release command is installed

0 commit comments

Comments
 (0)