From a95669966767f20f085a2d26bffe0466ce37ef5f Mon Sep 17 00:00:00 2001 From: Lennart Regebro Date: Thu, 7 Dec 2017 09:58:19 +0100 Subject: [PATCH] Releasing 0.8 --- CHANGELOG.md | 6 +++--- ChangeLog | 2 +- MANIFEST.in | 15 +++++++++++++++ setup.py | 2 +- unoconv | 2 +- 5 files changed, 21 insertions(+), 6 deletions(-) create mode 100644 MANIFEST.in diff --git a/CHANGELOG.md b/CHANGELOG.md index 4dcfea4..1fc989f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,7 @@ # Change Log -## [Unreleased](https://github.com/dagwieers/unoconv/tree/HEAD) - -[Full Changelog](https://github.com/dagwieers/unoconv/compare/0.7...HEAD) +## [0.8](https://github.com/dagwieers/unoconv/tree/0.8) (2017-12-07) +[Full Changelog](https://github.com/dagwieers/unoconv/compare/0.7...0.8) **Implemented enhancements:** @@ -58,6 +57,7 @@ **Merged pull requests:** - \* make -F switch working for user-defined fields [\#426](https://github.com/dagwieers/unoconv/pull/426) ([belegnar](https://github.com/belegnar)) +- Updated Changelog and docs [\#422](https://github.com/dagwieers/unoconv/pull/422) ([regebro](https://github.com/regebro)) - Added setup.py [\#421](https://github.com/dagwieers/unoconv/pull/421) ([regebro](https://github.com/regebro)) - Drop support for v3.3 and v3.4 [\#413](https://github.com/dagwieers/unoconv/pull/413) ([regebro](https://github.com/regebro)) - pass the password as openoffice expects it, so it will work for docum… [\#358](https://github.com/dagwieers/unoconv/pull/358) ([monomelodies](https://github.com/monomelodies)) diff --git a/ChangeLog b/ChangeLog index ffb6e0e..620c0ba 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -* 0.8 - unreleased +* 0.8 - released 2017-12-07 - Add option -M/--meta to add or update document metadata during conversion - Add option -I/--input-filter-name to specify input format (Martijn van de Streek) - Added setup.py to support standard Python installs, like pip, etc. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..2d3e042 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,15 @@ +include *.adoc +include *.md +include AUTHORS +include COPYING +include ChangeLog +include Makefile +recursive-include ci *.bash +recursive-include doc *.1 +recursive-include doc *.adoc +recursive-include doc Makefile +recursive-include packaging *.spec +recursive-include tests *.csv +recursive-include tests *.gif +recursive-include tests *.odt +recursive-include tests Makefile diff --git a/setup.py b/setup.py index f30f822..259af1f 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def adoc2rst(text): setup(name = "unoconv", - version = "0.7", + version = "0.8", author = "Dag Wieers", author_email = "dag.wieers@gmail.com", url = "https://github.com/dagwieers/unoconv", diff --git a/unoconv b/unoconv index d8f3d46..6e099fe 100755 --- a/unoconv +++ b/unoconv @@ -25,7 +25,7 @@ import subprocess import sys import time -__version__ = '0.7' +__version__ = '0.8' doctypes = ('document', 'graphics', 'presentation', 'spreadsheet')