diff --git a/CHANGELOG.md b/CHANGELOG.md index aef0058..dfe78ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.2] - 2024-08-14 ### Added - `dmeta/errors.py` - `pptx` and `xlsx` support @@ -46,5 +47,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `extract_docx` function in `util.py` - `read_json` function in `util.py` -[Unreleased]: https://github.com/openscilab/dmeta/compare/v0.1...dev -[0.1]: https://github.com/openscilab/dmeta/compare/9a4ad10 ...v0.1 \ No newline at end of file +[Unreleased]: https://github.com/openscilab/dmeta/compare/v0.2...dev +[0.2]: https://github.com/openscilab/dmeta/compare/v0.1...v0.2 +[0.1]: https://github.com/openscilab/dmeta/compare/9a4ad10...v0.1 diff --git a/README.md b/README.md index e148507..d3632e4 100644 --- a/README.md +++ b/README.md @@ -55,9 +55,9 @@ DMeta is an open source Python package that removes metadata of Microsoft Office ### PyPI - Check [Python Packaging User Guide](https://packaging.python.org/installing/) -- Run `pip install dmeta==0.1` +- Run `pip install dmeta==0.2` ### Source code -- Download [Version 0.1](https://github.com/openscilab/dmeta/archive/v0.1.zip) or [Latest Source](https://github.com/openscilab/dmeta/archive/dev.zip) +- Download [Version 0.2](https://github.com/openscilab/dmeta/archive/v0.2.zip) or [Latest Source](https://github.com/openscilab/dmeta/archive/dev.zip) - Run `pip install .` ## Usage diff --git a/SECURITY.md b/SECURITY.md index 5c0ead6..cc8018b 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,8 +4,8 @@ | Version | Supported | | ------------- | ------------------ | -| 0.1 | :white_check_mark: | -| < 0.1 | :x: | +| 0.2 | :white_check_mark: | +| < 0.2 | :x: | ## Reporting a vulnerability diff --git a/dmeta/params.py b/dmeta/params.py index 38b034e..db63a6a 100644 --- a/dmeta/params.py +++ b/dmeta/params.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- """DMeta parameters and constants.""" -DMETA_VERSION = "0.1" +DMETA_VERSION = "0.2" OVERVIEW = """ A Python library for removing personal metadata in Microsoft files(.docx, .pptx, .xlsx). diff --git a/otherfiles/meta.yaml b/otherfiles/meta.yaml index 61114e2..9476a1d 100644 --- a/otherfiles/meta.yaml +++ b/otherfiles/meta.yaml @@ -1,5 +1,5 @@ {% set name = "DMeta" %} -{% set version = "0.1" %} +{% set version = "0.2" %} package: name: {{ name|lower }} diff --git a/otherfiles/version_check.py b/otherfiles/version_check.py index 110a30d..45bd6f9 100644 --- a/otherfiles/version_check.py +++ b/otherfiles/version_check.py @@ -4,7 +4,7 @@ import sys import codecs Failed = 0 -DMETA_VERSION = "0.1" +DMETA_VERSION = "0.2" SETUP_ITEMS = [ diff --git a/setup.py b/setup.py index 318957b..a81df65 100644 --- a/setup.py +++ b/setup.py @@ -29,14 +29,14 @@ def read_description(): setup( name='DMeta', packages=['dmeta'], - version='0.1', + version='0.2', description='Removing microsoft office files\' metadata', long_description=read_description(), long_description_content_type='text/markdown', author='DMeta Development Team', author_email='dmeta@openscilab.com', url='https://github.com/openscilab/dmeta', - download_url='https://github.com/openscilab/dmeta/tarball/v0.1', + download_url='https://github.com/openscilab/dmeta/tarball/v0.2', keywords="python3 python metadata remove", project_urls={ 'Source': 'https://github.com/openscilab/dmeta',