diff --git a/README.md b/README.md index 8f96ab7..05e959d 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ The versioning uses a three part version system, "a.b.c" - "a" represents a majo * **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. +This is the first beta release of the Partisan 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. [travis_img]: https://travis-ci.org/DistrictDataLabs/partisan-discourse.svg diff --git a/partisan/templates/base.html b/partisan/templates/base.html index fbeaf5a..cccffac 100644 --- a/partisan/templates/base.html +++ b/partisan/templates/base.html @@ -6,12 +6,12 @@ - {% block title %}Political Discourse{% endblock %} + {% block title %}Partisan Discourse{% endblock %} {% block meta %} - - + + {% endblock %} {% block link %} diff --git a/partisan/templates/components/footer.html b/partisan/templates/components/footer.html index d754f68..beaf936 100644 --- a/partisan/templates/components/footer.html +++ b/partisan/templates/components/footer.html @@ -18,7 +18,7 @@

- Political Discourse v + Partisan Discourse v · status: diff --git a/partisan/templates/components/navbar.html b/partisan/templates/components/navbar.html index f653461..a9dd727 100644 --- a/partisan/templates/components/navbar.html +++ b/partisan/templates/components/navbar.html @@ -11,7 +11,7 @@ - Political Discourse beta + Partisan Discourse beta diff --git a/partisan/tests/test_init.py b/partisan/tests/test_init.py index 323b710..b0bed66 100644 --- a/partisan/tests/test_init.py +++ b/partisan/tests/test_init.py @@ -23,7 +23,7 @@ ## Module variables ########################################################################## -EXPECTED_VERSION = "0.1b1" +EXPECTED_VERSION = "0.1b2" ########################################################################## ## Initialization Tests diff --git a/partisan/version.py b/partisan/version.py index d79a239..bac560c 100644 --- a/partisan/version.py +++ b/partisan/version.py @@ -22,7 +22,7 @@ 'minor': 1, 'micro': 0, 'releaselevel': 'beta', - 'serial': 1, + 'serial': 2, }