Commit 151b37d6 authored by Hartmut Goebel's avatar Hartmut Goebel
Browse files

Merge release 1.0 into master.

parents fb41bfcd 16815b7b
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -13,6 +13,13 @@ def compile_message_catalogs(data):
    print("Done")


def build_man_pages(data):
    print("Building man pages")
    subprocess.run([sys.executable,
                    "setup.py", "build_docs"])
    print("Done")


def sign_release(data):
    "Sign the archive that will be uploaded to PYPI."
    # zest.releaser does a clean checkout where it generates tgz/zip in 'dist'
+9 −1
Original line number Diff line number Diff line
Changes
=================

.. include:: ../CHANGES
1.1 (unreleased)
----------------

- Nothing changed yet.


1.0 (2022-12-10)
----------------

Initial release.
 No newline at end of file

docs/Credits.rst

0 → 100644
+4 −0
Original line number Diff line number Diff line
Credits
=======

* Lejun for the French translation
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ decrypt - Remove passwords from PDF documents
__author__ = "Hartmut Goebel <h.goebel@crazy-compilers.com>"
__copyright__ = "Copyright 2022 by Hartmut Goebel <h.goebel@crazy-compilers.com>"
__licence__ = "GNU Affero General Public License v3 or later (AGPLv3+)"
__version__ = "0.1dev"
__version__ = "1.1.dev0"

from PyPDF2 import PdfWriter, PdfReader
from logging import warn
+1 −0
Original line number Diff line number Diff line
@@ -62,6 +62,7 @@ create-wheel = yes
python-file-with-version = pdfdecrypt/__init__.py
releaser.after_checkout =
    _zest_release_hooks.compile_message_catalogs
    _zest_release_hooks.build_man_pages
releaser.before_upload =
    _zest_release_hooks.sign_release
    _zest_release_hooks.run_twine_check