Skip to content

Commit

Permalink
Releasing 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
regebro committed Dec 7, 2017
1 parent 86a47a3 commit a956699
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 6 deletions.
6 changes: 3 additions & 3 deletions 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:**

Expand Down Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion 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.
Expand Down
15 changes: 15 additions & 0 deletions 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
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion unoconv
Expand Up @@ -25,7 +25,7 @@ import subprocess
import sys
import time

__version__ = '0.7'
__version__ = '0.8'

doctypes = ('document', 'graphics', 'presentation', 'spreadsheet')

Expand Down

0 comments on commit a956699

Please sign in to comment.