Skip to content

Commit

Permalink
Version 0.2 (#37)
Browse files Browse the repository at this point in the history
* update version and prepare v0.2 release

* Update CHANGELOG.md
  • Loading branch information
AHReccese authored Aug 13, 2024
1 parent 8641a55 commit b4dc33d
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 11 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
[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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion dmeta/params.py
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "DMeta" %}
{% set version = "0.1" %}
{% set version = "0.2" %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion otherfiles/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import sys
import codecs
Failed = 0
DMETA_VERSION = "0.1"
DMETA_VERSION = "0.2"


SETUP_ITEMS = [
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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='[email protected]',
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',
Expand Down

0 comments on commit b4dc33d

Please sign in to comment.