Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bbengfort committed Aug 30, 2016
1 parent 0f182ab commit 7b13ee5
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 16 deletions.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion arbiter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: __init__.py [] [email protected] $
# ID: __init__.py [cd70726] [email protected] $

"""
A Django app that implements a MMS for the red/blue models.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: admin.py [] [email protected] $
# ID: admin.py [cd70726] [email protected] $

"""
Django admin CMS definitions and registrations for the arbiter app.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: apps.py [] [email protected] $
# ID: apps.py [cd70726] [email protected] $

"""
Application definition for the arbiter app.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/management/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: __init__.py [] [email protected] $
# ID: __init__.py [feb4803] [email protected] $

"""
A module that specifies Django management commands for the arbiter app.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/management/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: __init__.py [] [email protected] $
# ID: __init__.py [feb4803] [email protected] $

"""
Module that contains each individual management command for Django.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/management/commands/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: train.py [] [email protected] $
# ID: train.py [feb4803] [email protected] $

"""
Command to train red/blue classifiers from the command line.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/migrations/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: __init__.py [] [email protected] $
# ID: __init__.py [cd70726] [email protected] $

"""
Database migrations for arbiter models.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: models.py [] [email protected] $
# ID: models.py [cd70726] [email protected] $

"""
Model definitions for the arbiter app.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: tests.py [] [email protected] $
# ID: tests.py [cd70726] [email protected] $

"""
Tests for the arbiter app.
Expand Down
2 changes: 1 addition & 1 deletion arbiter/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: views.py [] [email protected] $
# ID: views.py [cd70726] [email protected] $

"""
Views for the arbiter app.
Expand Down
2 changes: 1 addition & 1 deletion corpus/learn.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (C) 2016 District Data Labs
# For license information, see LICENSE.txt
#
# ID: learn.py [] [email protected] $
# ID: learn.py [3100e46] [email protected] $

"""
Machine learning for the corpus with Scikit-Learn.
Expand Down
2 changes: 1 addition & 1 deletion corpus/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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.1b2"
EXPECTED_VERSION = "0.2b3"

##########################################################################
## 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 @@ -19,10 +19,10 @@

__version_info__ = {
'major': 0,
'minor': 1,
'minor': 2,
'micro': 0,
'releaselevel': 'beta',
'serial': 2,
'serial': 3,
}


Expand Down

0 comments on commit 7b13ee5

Please sign in to comment.