-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update version and prepare v0.2 release * Update CHANGELOG.md
- Loading branch information
Showing
7 changed files
with
13 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
import sys | ||
import codecs | ||
Failed = 0 | ||
DMETA_VERSION = "0.1" | ||
DMETA_VERSION = "0.2" | ||
|
||
|
||
SETUP_ITEMS = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|