Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
Merge pull request #48 from miurahr/prepare_0.91
Browse files Browse the repository at this point in the history
Prepare 0.91
  • Loading branch information
miurahr authored Apr 29, 2018
2 parents 7b1dc91 + ff25d33 commit 58df9f8
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 40 deletions.
32 changes: 25 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,12 @@ All notable changes to this project will be documented in this file.
Added
-----

* Test case convert from Full-width Alphabet/symbols to Half-width (E2a).
* Convert logic from Full-width alphabet/symbols to Half-width (E2a).

Changed
-------

Fixed
-----

* Conversion from ○々 become 'TypeError: must be str, not NoneType' (#46)
* Appveyor: update deployment script.

Deprecated
----------

Expand All @@ -32,6 +26,29 @@ Security
--------



`v0.91`_ (29, Apr., 2018)
=========================

Added
-----

* Test case convert from Full-width Alphabet/symbols to Half-width (E2a).
* Convert logic from Full-width alphabet/symbols to Half-width (E2a).
* Add more words with repeat mark from SKK-JISYO.L (#46)

Changed
-------

* Not distribute binary wheel package, because of dictionary data depends on python version.

Fixed
-----

* Conversion from ○々 become 'TypeError: must be str, not NoneType' (#46)
* Appveyor: update deployment script.


`v0.90`_ (29, Mar., 2018)
=========================

Expand Down Expand Up @@ -197,7 +214,8 @@ Version 0.10 (25, April, 2014)
(Thanks @FGtatsuro)
* Kunrei and Hepburn roman table

.. _Unreleased: https://github.com/miurahr/pykakasi/compare/v0.83...HEAD
.. _Unreleased: https://github.com/miurahr/pykakasi/compare/v0.91...HEAD
.. _v0.91: https://github.com/miurahr/pykakasi/compare/v0.90...v0.91
.. _v0.90: https://github.com/miurahr/pykakasi/compare/v0.83...v0.90
.. _v0.83: https://github.com/miurahr/pykakasi/compare/v0.82...v0.83
.. _v0.82: https://github.com/miurahr/pykakasi/compare/v0.80...v0.82
Expand Down
31 changes: 0 additions & 31 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
environment:
PYPI_USERNAME: miurahr
PYPI_PASSWORD:
secure: ibyxU09f3mAdoh5Hv4T27Q==

install:
- "python.exe -m pip install twine wheel"
- "python.exe -m pip install -U -r requirements-dev.txt -r requirements.txt"

build_script:
Expand All @@ -13,31 +7,6 @@ build_script:
test_script:
- "python.exe setup.py test"

after_test:
- "python.exe setup.py bdist_wheel"

artifacts:
- path: dist\*

deploy_script:
- ps: |
function exec
{
param ( [ScriptBlock] $ScriptBlock )
& $ScriptBlock 2>&1 | ForEach-Object -Process { "$_" }
if ($LastExitCode -ne 0) { exit $LastExitCode }
}
If ($env:APPVEYOR_REPO_TAG -eq "true")
{
$artifacts = Get-ChildItem -Path dist -Include '*.whl' -Recurse -Name | %{"$_"}
cd dist
exec { python.exe -m twine upload -u ${env:PYPI_USERNAME} --skip-existing $artifacts }
}
else
{
Write-Host "Skip uploading artifacts to PyPi when non tag commit"
}
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/527beafbc6f6f66bf889
Expand Down
2 changes: 1 addition & 1 deletion kakasi
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import sys
import getopt
import pykakasi

_VERSION = '0.90'
_VERSION = '0.91'

def show_version():
print (os.path.basename(sys.argv[0]) + " v" + _VERSION)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def run(self):
tests_require.append('unittest2')

setup(name='pykakasi',
version='0.90',
version='0.91',
description='Python implementation of kakasi - kana kanji simple inversion library',
url='http://github.com/miurahr/pykakasi',
license='GPLv3',
Expand Down

0 comments on commit 58df9f8

Please sign in to comment.