diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2020-09-05 20:03:51 +0200 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2020-09-05 20:10:48 +0200 |
commit | 3ce08d33f6bad9931b32082f598b0e98599dd120 (patch) | |
tree | d6d6b3494a22580ee1c9d7e290570fdfe88b1bf8 | |
parent | a75f9905655939eca7d6c276b6c684d8d792c0cd (diff) | |
download | pdf-simple-sign-1.1.tar.gz pdf-simple-sign-1.1.tar.xz pdf-simple-sign-1.1.zip |
Bump version, update NEWSv1.1
-rw-r--r-- | NEWS | 16 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 17 insertions, 1 deletions
@@ -1,3 +1,19 @@ +1.1 (2020-09-05) + + * Make it possible to change the signature reservation with an option + + * Return errors rather than mangle documents in some cases, + notably with pre-existing PDF forms + + * Avoid downgrading the document's PDF version to 1.6 + + * A few fixes for PDF parsing and serialisation + + * Add an instructive man page + + * Add a native Go port of the utility, also usable as a library + + 1.0 (2018-08-03) * Initial release diff --git a/meson.build b/meson.build index 57be9e1..469d726 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('pdf-simple-sign', 'cpp', default_options : ['cpp_std=c++11'], - version : '1.0') + version : '1.1') conf = configuration_data() conf.set('PROJECT_NAME', '"' + meson.project_name() + '"') |