version 0.3.1

This commit is contained in:
Mort Yao 2013-02-15 02:25:12 +01:00
parent 125100dd11
commit cbae44078a
4 changed files with 18 additions and 3 deletions

View File

@ -1,6 +1,14 @@
Changelog Changelog
========= =========
0.3.1
-----
*Date: 2013-02-15*
* Fix issues for Google+ and Mixcloud.
* API changed.
0.3.0 0.3.0
----- -----

View File

@ -2,7 +2,10 @@ SETUP = python3 setup.py
.PHONY: default clean build sdist bdist bdist_egg install release .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: test:
$(SETUP) test $(SETUP) test
@ -12,6 +15,8 @@ clean:
rm -fr build/ dist/ src/*.egg-info/ rm -fr build/ dist/ src/*.egg-info/
find . | grep __pycache__ | xargs rm -fr find . | grep __pycache__ | xargs rm -fr
all: build sdist bdist bdist_egg
build: build:
$(SETUP) build $(SETUP) build

View File

@ -6,6 +6,8 @@ See the project homepage <http://www.soimort.org/you-get> for further documentat
Fork me on GitHub: <https://github.com/soimort/you-get> Fork me on GitHub: <https://github.com/soimort/you-get>
[![Build Status](https://api.travis-ci.org/soimort/you-get.png)](https://travis-ci.org/soimort/you-get)
## Features ## Features
### Supported Sites (As of Now) ### Supported Sites (As of Now)

View File

@ -2,5 +2,5 @@
__all__ = ['__version__', '__date__'] __all__ = ['__version__', '__date__']
__version__ = '0.3.1rc' __version__ = '0.3.1'
__date__ = '2013-02-12' __date__ = '2013-02-15'