Skip to content

Commit

Permalink
Release 0.0.10; added release history to README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
vthorsteinsson committed Nov 19, 2019
1 parent 796398d commit 9e3b6cd
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
graft src
prune src/straeto/__pycache__
recursive-exclude src/straeto/resources status_url.txt
recursive-exclude src/straeto/config status_url.txt
recursive-exclude src/straeto/resources shapes.txt
recursive-exclude src/straeto/resources status.xml
recursive-exclude src/straeto/resources *.zip
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

# Straeto

Straeto is a Python 3.x package encapsulating data about buses and bus
**Straeto** is a Python 3.x package encapsulating data about buses and bus
routes of Strætó bs, an Icelandic municipal bus service.

The data is fetched from the public [straeto.is website](https://straeto.is),
Expand Down Expand Up @@ -61,6 +61,13 @@ an agreement with Strætó to get access to the data and obtain your own URL. On
have your URL, put it in the file `config/status_url.txt` to enable the Straeto
package to fetch real-time data.

## Release history

* Release **0.0.10**

Better support for Windows with explicit specification of UTF-8 encoding
for files

## Copyright

*This program is copyright © 2019 Miðeind ehf.*
Expand Down
2 changes: 2 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
echo "Prepare and upload a new Straeto version"
rm -rf build/
rm -rf dist/
python setup.py bdist_wheel --universal
python setup.py sdist
twine upload dist/straeto-$1*
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def read(*names, **kwargs):
setup(
name="straeto",
# Remember to modify version number in src/straeto/__init__.py as well
version="0.0.8",
version="0.0.10",
license="GNU GPLv3",
description="A package for information about buses and bus routes",
long_description="{0}\n".format(read("README.md")),
Expand Down
2 changes: 1 addition & 1 deletion src/straeto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@
__author__ = "Miðeind ehf."
__copyright__ = "(C) 2019 Miðeind ehf."
# Remember to update the version in setup.py as well
__version__ = "0.0.8"
__version__ = "0.0.10"

0 comments on commit 9e3b6cd

Please sign in to comment.