Skip to content

Commit

Permalink
release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jcgregorio committed Mar 2, 2012
1 parent 16ac18b commit b850bd0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
0.8.0
0.7.3
ProxyInfo objects now can construct themselves from environment
variables commonly-used in Unix environments. By default, the Http
class will construct a ProxyInfo instance based on these environment
Expand All @@ -8,6 +8,9 @@
The following issues have been addressed:

Issue 159: automatic detection of proxy configuration.
Issue 179: Allow unicode in proxy hostname.
Issue 194: Added support for setuptools.
Fixes for HTTP CONNECT proxies.

0.7.1
Fix failure to install cacerts.txt for 2.x installs.
Expand Down
12 changes: 8 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,16 @@ tests:

VERSION = $(shell python setup.py --version)
INLINE_VERSION = $(shell cd python2; python -c "import httplib2;print httplib2.__version__")
INLINE_VERSION_3 = $(shell cd python3; python3.2 -c "import httplib2;print(httplib2.__version__)")
INLINE_VERSION_3 = $(shell cd python3; ~/bin/python3.2 -c "import httplib2;print(httplib2.__version__)")
DST = dist/httplib2-$(VERSION)

release:
[ "$(VERSION)" == "$(INLINE_VERSION)" ] # Check for version number mismatch
[ "$(VERSION)" == "$(INLINE_VERSION_3)" ] # Check for version number mismatch
echo $(INLINE_VERSION_3)
echo $(INLINE_VERSION)
# Check for version number mismatch
if [ $(VERSION) -ne $(INLINE_VERSION_3) ]; then exit 1; fi
if [ $(VERSION) -ne $(INLINE_VERSION) ]; then exit 1; fi

-find . -name "*.pyc" | xargs rm
-find . -name "*.orig" | xargs rm
-rm -rf python2/.cache
Expand All @@ -26,7 +30,7 @@ release:
-mkdir dist/httplib2-$(VERSION)
cp -r python2 $(DST)
cp -r python3 $(DST)
cp setup.py README MANIFEST CHANGELOG $(DST)
cp setup.py README MANIFEST.in CHANGELOG $(DST)
cd dist && tar -czv -f httplib2-$(VERSION).tar.gz httplib2-$(VERSION)
cd dist && zip httplib2-$(VERSION).zip -r httplib2-$(VERSION)
python setup.py register upload
Expand Down

0 comments on commit b850bd0

Please sign in to comment.