Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Jul 19, 2016
1 parent bd93e8e commit a680d0c
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,20 @@ This small web application is intended to highlight how to operationalize machin

The image used in this README, [Partisan Fail][partisan.jpg] by [David Colarusso](https://www.flickr.com/photos/dcolarusso/) is licensed under [CC BY-NC 2.0](https://creativecommons.org/licenses/by-nc/2.0/)

## Changelog

The release versions that are deployed to the web servers are also tagged in GitHub. You can see the tags through the GitHub web application and download the tarball of the version you'd like.

The versioning uses a three part version system, "a.b.c" - "a" represents a major release that may not be backwards compatible. "b" is incremented on minor releases that may contain extra features, but are backwards compatible. "c" releases are bug fixes or other micro changes that developers should feel free to immediately update to.

### Version 0.1 Beta 1

* **tag**: [v0.1b1](https://github.com/DistrictDataLabs/partisan-discourse/releases/tag/v0.1b1)
* **deployment**: Monday, July 18, 2016
* **commit**: [see tag](#)

This is the first beta release of the Political Discourse application. Right now this simple web application allows users to sign in, then add links to go fetch web content to the global corpus. These links are then preprocessed using NLP foo. Users can tag the documents as Republican or Democrat, allowing us to build a political classifier.

<!-- References -->
[travis_img]: https://travis-ci.org/DistrictDataLabs/partisan-discourse.svg
[travis_href]: https://travis-ci.org/DistrictDataLabs/partisan-discourse
Expand Down
2 changes: 1 addition & 1 deletion partisan/tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
## Module variables
##########################################################################

EXPECTED_VERSION = "0.1"
EXPECTED_VERSION = "0.1b1"

##########################################################################
## Initialization Tests
Expand Down
4 changes: 2 additions & 2 deletions partisan/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
'major': 0,
'minor': 1,
'micro': 0,
'releaselevel': 'final',
'serial': 0,
'releaselevel': 'beta',
'serial': 1,
}


Expand Down

0 comments on commit a680d0c

Please sign in to comment.