Skip to content

Commit 17543f9

Browse files
committed
Merge branch 'release-0.3.1' into develop
2 parents ddf9a8d + 6008428 commit 17543f9

4 files changed

Lines changed: 18 additions & 7 deletions

File tree

baleen/console/commands/summary.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
d# baleen.console.commands.summary
1+
# baleen.console.commands.summary
22
# A utility to print out information about the Baleen state.
33
#
44
# Author: Benjamin Bengfort <benjamin@bengfort.com>
@@ -89,7 +89,7 @@ def handle(self, args):
8989
u" eTag: \"{}\"".format(latest.etag),
9090
u" Modified: {}".format(latest.modified),
9191
u" Updated: {}".format(latest.updated.strftime(HUMAN_DATETIME)),
92-
# u" Posts: {}".format(latest.count_posts()), # This is very slow need to fix.
92+
# u" Posts: {}".format(latest.count_posts()), # This is very slow need to fix.
9393
])
9494

9595
latest = db.Post.objects.order_by('-id').first()

baleen/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
__version_info__ = {
2121
'major': 0,
2222
'minor': 3,
23-
'micro': 0,
23+
'micro': 1,
2424
'releaselevel': 'final',
2525
'serial': 0,
2626
}

docs/about.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,32 @@ Thank you for all your help contributing to make Baleen a great project!
3939

4040
### Contributors
4141

42-
- Your name welcome here!
42+
- Laura Lorenz: [@lauralorenz](https://github.com/lauralorenz)
43+
- Sasan Bahadaran: [@bahadasx](https://github.com/bahadasx)
4344

4445
## Changelog
4546

4647
The release versions that are sent to the Python package index (PyPI) 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. Additionally PyPI will host the various releases of Baleen (eventually).
4748

4849
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.
4950

51+
### Version 0.3.1
52+
53+
* **tag**: [v0.3.1](https://github.com/bbengfort/baleen/releases/tag/v0.3.1)
54+
* **deployment**: Thursday, April 7, 2016
55+
* **commit**: (see tag)
56+
57+
Very happy to have had [@lauralorenz](https://github.com/lauralorenz) and [@bahadasx](https://github.com/bahadasx) contribute to Baleen by building a web admin app. The app is a very simple Flask app that reads from the database and reports on the status, including the list of available feeds. It also reports information from the log file.
58+
59+
The app can be found online now at [http://baleen.districtdatalabs.com](http://baleen.districtdatalabs.com).
60+
5061
### Version 0.3
5162

5263
* **tag**: [v0.3](https://github.com/bbengfort/baleen/releases/tag/v0.3)
5364
* **deployment**: Thursday, March 3, 2016
54-
* **commit**: (see tag)
65+
* **commit**: [9e095bc](https://github.com/bbengfort/baleen/commit/9e095bc4cac584e906dfd6e38eb77b1ef5afe107)
5566

56-
Releases one day after another! The reason is because Baleen needs to be running in production to gather a large enough corpus for PyCon. Version 0.3 is a major release that implements the revised component architecture. It should hopefully be more stable, give more visibility into what's going on, be easier to update and fix, and have a few more features. Features include tracking ingestion jobs in the Mongo database (so we can add a web application), synchronization of feeds and wrangling of posts are not coupled. Added Commis for easier console utility management, and finally added some other tools and tests.
67+
Releases one day after another! The reason is because Baleen needs to be running in production to gather a large enough corpus for PyCon. Version 0.3 is a major release that implements the revised component architecture. It should hopefully be more stable, give more visibility into what's going on, be easier to update and fix, and have a few more features. Features include tracking ingestion jobs in the Mongo database (so we can add a web application), synchronization of feeds and wrangling of posts are not coupled. Added Commis for easier console utility management, and finally added some other tools and tests.
5768

5869
### Version 0.2.1
5970

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
## Module Constants
2424
##########################################################################
2525

26-
TEST_VERSION = "0.3" ## Also the expected version onf the package
26+
TEST_VERSION = "0.3.1" ## Also the expected version onf the package
2727

2828
##########################################################################
2929
## Test Cases

0 commit comments

Comments
 (0)