diff --git a/README.md b/README.md index 05e959d..560dfea 100644 --- a/README.md +++ b/README.md @@ -22,11 +22,21 @@ The release versions that are deployed to the web servers are also tagged in Git 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.2 Beta 3 + +* **tag**: [v0.2b3](https://github.com/DistrictDataLabs/partisan-discourse/releases/tag/v0.2b3) +* **deployment**: Monday, August 29, 2016 +* **commit**: [see tag](#) + +This is an intermediate release to ensure that some front end components become visible in advance of the first release. In particular the annotation help button on the document view and the about page that gives built with attribution. This release also fixes the "." in usernames bug that would not allow people to log in or access their profile. + +This release also contains components that are not officially ready but sit quietly in the background waiting to be deployed. This includes the management command to build models, the corpus object to link data sets, estimator models for Scikit-Learn pipeline/estimator data storage and more. These elements will be discussed in detail in future releases. + ### 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](#) +* **commit**: [393211a](https://github.com/DistrictDataLabs/partisan-discourse/commit/393211acd1a270e04ae7b69f750be2f3e7305230) 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. diff --git a/arbiter/__init__.py b/arbiter/__init__.py index 03a65e1..4bfdcd0 100644 --- a/arbiter/__init__.py +++ b/arbiter/__init__.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: __init__.py [] benjamin@bengfort.com $ +# ID: __init__.py [cd70726] benjamin@bengfort.com $ """ A Django app that implements a MMS for the red/blue models. diff --git a/arbiter/admin.py b/arbiter/admin.py index 7383bb3..ab33bec 100644 --- a/arbiter/admin.py +++ b/arbiter/admin.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: admin.py [] benjamin@bengfort.com $ +# ID: admin.py [cd70726] benjamin@bengfort.com $ """ Django admin CMS definitions and registrations for the arbiter app. diff --git a/arbiter/apps.py b/arbiter/apps.py index cdb42c4..a88772c 100644 --- a/arbiter/apps.py +++ b/arbiter/apps.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: apps.py [] benjamin@bengfort.com $ +# ID: apps.py [cd70726] benjamin@bengfort.com $ """ Application definition for the arbiter app. diff --git a/arbiter/management/__init__.py b/arbiter/management/__init__.py index a4c6a78..f976217 100644 --- a/arbiter/management/__init__.py +++ b/arbiter/management/__init__.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: __init__.py [] benjamin@bengfort.com $ +# ID: __init__.py [feb4803] benjamin@bengfort.com $ """ A module that specifies Django management commands for the arbiter app. diff --git a/arbiter/management/commands/__init__.py b/arbiter/management/commands/__init__.py index e25d4ce..76b9134 100644 --- a/arbiter/management/commands/__init__.py +++ b/arbiter/management/commands/__init__.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: __init__.py [] benjamin@bengfort.com $ +# ID: __init__.py [feb4803] benjamin@bengfort.com $ """ Module that contains each individual management command for Django. diff --git a/arbiter/management/commands/train.py b/arbiter/management/commands/train.py index b0a8955..9c1e091 100644 --- a/arbiter/management/commands/train.py +++ b/arbiter/management/commands/train.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: train.py [] benjamin@bengfort.com $ +# ID: train.py [feb4803] benjamin@bengfort.com $ """ Command to train red/blue classifiers from the command line. diff --git a/arbiter/migrations/__init__.py b/arbiter/migrations/__init__.py index 415b09d..aee5044 100644 --- a/arbiter/migrations/__init__.py +++ b/arbiter/migrations/__init__.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: __init__.py [] benjamin@bengfort.com $ +# ID: __init__.py [cd70726] benjamin@bengfort.com $ """ Database migrations for arbiter models. diff --git a/arbiter/models.py b/arbiter/models.py index 687ed52..122c424 100644 --- a/arbiter/models.py +++ b/arbiter/models.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: models.py [] benjamin@bengfort.com $ +# ID: models.py [cd70726] benjamin@bengfort.com $ """ Model definitions for the arbiter app. diff --git a/arbiter/tests.py b/arbiter/tests.py index b72f60d..d7f55ce 100644 --- a/arbiter/tests.py +++ b/arbiter/tests.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: tests.py [] benjamin@bengfort.com $ +# ID: tests.py [cd70726] benjamin@bengfort.com $ """ Tests for the arbiter app. diff --git a/arbiter/views.py b/arbiter/views.py index 622c4c2..2dd9f49 100644 --- a/arbiter/views.py +++ b/arbiter/views.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: views.py [] benjamin@bengfort.com $ +# ID: views.py [cd70726] benjamin@bengfort.com $ """ Views for the arbiter app. diff --git a/corpus/learn.py b/corpus/learn.py index e18a0ea..282da09 100644 --- a/corpus/learn.py +++ b/corpus/learn.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: learn.py [] benjamin@bengfort.com $ +# ID: learn.py [3100e46] benjamin@bengfort.com $ """ Machine learning for the corpus with Scikit-Learn. diff --git a/corpus/reader.py b/corpus/reader.py index 7220271..fee3023 100644 --- a/corpus/reader.py +++ b/corpus/reader.py @@ -7,7 +7,7 @@ # Copyright (C) 2016 District Data Labs # For license information, see LICENSE.txt # -# ID: reader.py [] tojeda@districtdatalabs.com $ +# ID: reader.py [01cb9f8] ojedatony1616@gmail.com $ """ A simple corpus reader object for training models. diff --git a/partisan/tests/test_init.py b/partisan/tests/test_init.py index b0bed66..cc1e62e 100644 --- a/partisan/tests/test_init.py +++ b/partisan/tests/test_init.py @@ -23,7 +23,7 @@ ## Module variables ########################################################################## -EXPECTED_VERSION = "0.1b2" +EXPECTED_VERSION = "0.2b3" ########################################################################## ## Initialization Tests diff --git a/partisan/version.py b/partisan/version.py index bac560c..f22db70 100644 --- a/partisan/version.py +++ b/partisan/version.py @@ -19,10 +19,10 @@ __version_info__ = { 'major': 0, - 'minor': 1, + 'minor': 2, 'micro': 0, 'releaselevel': 'beta', - 'serial': 2, + 'serial': 3, }