Skip to content

Commit

Permalink
Bump version to 0.1.2, and consolidate version strings
Browse files Browse the repository at this point in the history
There are two places where we still have version strings:
pygtfs.__version__ and the README.md file
  • Loading branch information
Yaron de Leeuw committed Jan 26, 2014
1 parent 671d3da commit 9a2826e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pygtfs
Overview
--------

Latest version: 0.1.0
Latest version: 0.1.2

pygtfs is a library that models information stored in Google's
[General Transit Feed Specification (GTFS)](https://developers.google.com/transit/)
Expand Down
6 changes: 4 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,12 @@
# |version| and |release|, also used in various other places throughout the
# built documents.
#
### get version from package itself
from pygtfs import __version__
# The short X.Y version.
version = '0.1'
version = __version__
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = __version__

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
contain the root `toctree` directive.
pygtfs - a database backed python gtfs interface!
==================================
=================================================

Get it
------
Expand Down
2 changes: 1 addition & 1 deletion docs/internal.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Internally used modules
===================
=======================

.. automodule:: pygtfs.feed
:members:
Expand Down
2 changes: 1 addition & 1 deletion pygtfs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .loader import append_feed, delete_feed, overwrite_feed, list_feeds
from .schedule import Schedule

__version__ = "pygtfs 0.1.0"
__version__ = "0.1.2"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from setuptools import setup, find_packages
from pygtfs import __version__
setup(
name='pygtfs',
version='0.1.1',
version=__version__,
author='Yaron de Leeuw',
description='Models GTFS data in a database.',
license='MIT',
Expand Down

0 comments on commit 9a2826e

Please sign in to comment.