diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 8e2612b1..d89c7ca6 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,14 @@ Changelog ========= +0.3.1 +----- + +*Date: 2013-02-15* + +* Fix issues for Google+ and Mixcloud. +* API changed. + 0.3.0 ----- diff --git a/Makefile b/Makefile index 355a887f..fa3c7ce1 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,10 @@ SETUP = python3 setup.py .PHONY: default clean build sdist bdist bdist_egg install release -default: build sdist bdist bdist_egg +default: i + +i: + @(cd src/; python -i -c 'import you_get; print("You-Get %s (%s)\n>>> import you_get" % (you_get.__version__, you_get.__date__))') test: $(SETUP) test @@ -12,6 +15,8 @@ clean: rm -fr build/ dist/ src/*.egg-info/ find . | grep __pycache__ | xargs rm -fr +all: build sdist bdist bdist_egg + build: $(SETUP) build diff --git a/README.md b/README.md index 798663e6..d39aa8e8 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ See the project homepage for further documentat Fork me on GitHub: +[![Build Status](https://api.travis-ci.org/soimort/you-get.png)](https://travis-ci.org/soimort/you-get) + ## Features ### Supported Sites (As of Now) diff --git a/src/you_get/version.py b/src/you_get/version.py index 209f9ed8..bb1aa8f6 100644 --- a/src/you_get/version.py +++ b/src/you_get/version.py @@ -2,5 +2,5 @@ __all__ = ['__version__', '__date__'] -__version__ = '0.3.1rc' -__date__ = '2013-02-12' +__version__ = '0.3.1' +__date__ = '2013-02-15'