diff --git a/Changelog.yaml b/Changelog.yaml index 8b29dc054c..8f47c24f21 100644 --- a/Changelog.yaml +++ b/Changelog.yaml @@ -19,6 +19,12 @@ # new recipes: # - title: +- version: 0.7.52 + date: 2011-03-25 + + bug fixes: + - title: "Fixes a typo in 0.7.51 that broke the downloading of some news. Apologies." + - version: 0.7.51 date: 2011-03-25 diff --git a/setup/installer/__init__.py b/setup/installer/__init__.py index f2d598e33a..79bb942cde 100644 --- a/setup/installer/__init__.py +++ b/setup/installer/__init__.py @@ -14,7 +14,7 @@ from setup.build_environment import HOST, PROJECT BASE_RSYNC = ['rsync', '-avz', '--delete'] EXCLUDES = [] for x in [ - 'src/calibre/plugins', 'src/calibre/manual', 'src/calibre/trac', 'recipes', + 'src/calibre/plugins', 'src/calibre/manual', 'src/calibre/trac', '.bzr', '.build', '.svn', 'build', 'dist', 'imgsrc', '*.pyc', '*.pyo', '*.swp', '*.swo', 'format_docs']: EXCLUDES.extend(['--exclude', x]) diff --git a/src/calibre/constants.py b/src/calibre/constants.py index 253e67cdd1..ff9895657d 100644 --- a/src/calibre/constants.py +++ b/src/calibre/constants.py @@ -2,7 +2,7 @@ __license__ = 'GPL v3' __copyright__ = '2008, Kovid Goyal kovid@kovidgoyal.net' __docformat__ = 'restructuredtext en' __appname__ = 'calibre' -__version__ = '0.7.51' +__version__ = '0.7.52' __author__ = "Kovid Goyal " import re, importlib