Skip to content

Commit

Permalink
Prep for v1.1.0 release (#131)
Browse files Browse the repository at this point in the history
* Bump version number to 1.1.0

* Update change log

* Add pull request reminder

* Update readme for the public wikipron-modeling repo

* Update change log

* Add LREC paper citation in readme

* Update v1.1.0 release date
  • Loading branch information
jacksonllee authored Mar 3, 2020
1 parent 3aa44a3 commit 7ea49af
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [ ] Updated `Unreleased` in `CHANGELOG.md` to reflect the changes in code or data.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,26 @@ Unreleased
### Fixed
### Security

[1.1.0] - 2020-03-03
--------------------

### Added

- Added the extraction function for Mandarin Chinese and its scraped data. (\#124)
- Integrated Wortschatz frequencies. (\#122)

### Changed

- Updated the Japanese extraction function and Japanese data. (\#129)
- Updated all scraped Wiktionary data and frequency data. (\#127, \#128)
- Generalized the splitting script in the big scrape. (\#123)
- Moved small file removal to `generate_summary.py`. (\#119)
- Updated Russian data. (\#115)

### Fixed

- Avoided and logged error in case of pron processing failure. (\#130)

[1.0.0] - 2019-11-29
----------------------

Expand Down
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,23 @@ version](https://badge.fury.io/py/wikipron.svg)](https://pypi.org/project/wikipr
versions](https://img.shields.io/pypi/pyversions/wikipron.svg)](https://pypi.org/project/wikipron)
[![CircleCI](https://circleci.com/gh/kylebgorman/wikipron/tree/master.svg?style=svg)](https://circleci.com/gh/kylebgorman/wikipron/tree/master)

WikiPron is a command-line tool, Python API, and database for mining
multilingual pronunciation data from Wiktionary.
WikiPron is a command-line tool, Python API, database for mining
multilingual pronunciation data from Wiktionary, as well as
sample grapheme-to-phoneme models trained on this data.

- [Command-line tool](#command-line-tool)
- [Python API](#python-api)
- [Data](#data)
- [Models](#models)
- [Development](#development)

If you use WikiPron in your research, please cite the following:

Jackson L. Lee, Lucas F.E. Ashby, M. Elizabeth Garza, Yeonju Lee-Sikka, Sean Miller,
Alan Wong, Arya D. McCarthy, and Kyle Gorman (2020).
Massively multilingual pronunciation mining with WikiPron.
In LREC, to appear.

Command-line tool
-----------------

Expand Down Expand Up @@ -98,8 +107,10 @@ We also make available [a database of 1.7 million word/pronunciation
pairs](https://github.com/kylebgorman/wikipron/tree/master/languages/wikipron)
mined using WikiPron.

In the near future we will release grapheme-to-phoneme models and modeling
software [in a separate
Models
------

We host grapheme-to-phoneme models and modeling software [in a separate
repository](https://github.com/kylebgorman/wikipron-modeling).

Development
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import setuptools


_VERSION = "1.0.0"
_VERSION = "1.1.0"

_THIS_DIR = os.path.dirname(os.path.realpath(__file__))

Expand Down

0 comments on commit 7ea49af

Please sign in to comment.