Skip to content

Commit ca32587

Browse files
committed
Release 0.1.0
1 parent 8149001 commit ca32587

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed

RELEASING.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Release Checklist
2+
3+
* [ ] Get master to the appropriate code release state.
4+
* [ ] Update version in `whatsonthemenu/__init__.py` and `setup.py` and commit:
5+
```bash
6+
git checkout master
7+
edit whatsonthemenu/__init__.py setup.py
8+
git add whatsonthemenu/__init__.py setup.py
9+
git commit -m "Release 0.1.0"
10+
```
11+
* [ ] Tag the last commit with the version number:
12+
```bash
13+
git tag -a 0.1.0 -m "Release 0.1.0"
14+
```
15+
* [ ] Release on PyPI:
16+
```bash
17+
python setup.py register
18+
python setup.py sdist --format=gztar upload
19+
```
20+
* [ ] Check installation: `pip install -U whatsonthemenu`
21+
* [ ] Push: `git push`
22+
* [ ] Push tags: `git push --tags`
23+
* [ ] Create new GitHub release: https://github.com/hugovk/whatsonthemenu/releases/new
24+
* Tag: Pick existing tag "0.1.0"
25+
* Title: "Release 0.1.0"
26+
* [ ] Update develop branch from master:
27+
```bash
28+
git checkout develop
29+
git merge master --ff-only
30+
git push
31+
```
32+

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='whatsonthemenu',
4-
version='0.0.1',
4+
version='0.1.0',
55
description="Python interface to NYPL's What's on The Menu API",
66
author='hugovk',
77
url='https://github.com/hugovk/whatsonthemenu',

whatsonthemenu/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
from __future__ import print_function, unicode_literals
88
import requests
99

10+
__version__ = '0.1.0'
11+
1012

1113
class WhatsOnTheMenu(object):
1214
""" Python interface for NYPL's What's on The Menu API """

0 commit comments

Comments
 (0)