Skip to content

Commit

Permalink
Release 0.3 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
loicteixeira authored Sep 21, 2017
1 parent 5e164ff commit 0d5bceb
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,15 @@ Or if you opted for the LatLng pair option:
```html
<a href="http://maps.google.com/?q={{ latlng }}">Open map</a>
```

## Development

### Releases

- Make a new branch for the release of the new version.
- Update the [CHANGELOG](https://github.com/springload/wagtailgmaps/CHANGELOG.md).
- Update the version number in `wagtailgmaps/__init__.py`, following semver.
- Make a PR and squash merge it.
- Back on master with the PR merged, use `make publish` (confirm, and enter your password).
- Finally, go to GitHub and create a release and a tag for the new version.
- Done!
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

from setuptools import setup

from wagtailgmaps import __version__

with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()

Expand Down Expand Up @@ -36,7 +38,7 @@

setup(
name='wagtailgmaps',
version='0.3.0',
version=__version__,
packages=['wagtailgmaps'],
include_package_data=True,
license='MIT',
Expand Down
5 changes: 5 additions & 0 deletions wagtailgmaps/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
__title__ = 'wagtailgmaps'
__version__ = '0.3'
__author__ = 'Springload'
__license__ = 'MIT'
__copyright__ = 'Copyright 2017 Springload'

0 comments on commit 0d5bceb

Please sign in to comment.