Skip to content

Commit 7ea49af

Browse files
authoredMar 3, 2020
Prep for v1.1.0 release (#131)
* 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
1 parent 3aa44a3 commit 7ea49af

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed
 

‎.github/pull_request_template.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- [ ] Updated `Unreleased` in `CHANGELOG.md` to reflect the changes in code or data.

‎CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,26 @@ Unreleased
1717
### Fixed
1818
### Security
1919

20+
[1.1.0] - 2020-03-03
21+
--------------------
22+
23+
### Added
24+
25+
- Added the extraction function for Mandarin Chinese and its scraped data. (\#124)
26+
- Integrated Wortschatz frequencies. (\#122)
27+
28+
### Changed
29+
30+
- Updated the Japanese extraction function and Japanese data. (\#129)
31+
- Updated all scraped Wiktionary data and frequency data. (\#127, \#128)
32+
- Generalized the splitting script in the big scrape. (\#123)
33+
- Moved small file removal to `generate_summary.py`. (\#119)
34+
- Updated Russian data. (\#115)
35+
36+
### Fixed
37+
38+
- Avoided and logged error in case of pron processing failure. (\#130)
39+
2040
[1.0.0] - 2019-11-29
2141
----------------------
2242

‎README.md

+15-4
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,23 @@ version](https://badge.fury.io/py/wikipron.svg)](https://pypi.org/project/wikipr
77
versions](https://img.shields.io/pypi/pyversions/wikipron.svg)](https://pypi.org/project/wikipron)
88
[![CircleCI](https://circleci.com/gh/kylebgorman/wikipron/tree/master.svg?style=svg)](https://circleci.com/gh/kylebgorman/wikipron/tree/master)
99

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

1314
- [Command-line tool](#command-line-tool)
1415
- [Python API](#python-api)
1516
- [Data](#data)
17+
- [Models](#models)
1618
- [Development](#development)
1719

20+
If you use WikiPron in your research, please cite the following:
21+
22+
Jackson L. Lee, Lucas F.E. Ashby, M. Elizabeth Garza, Yeonju Lee-Sikka, Sean Miller,
23+
Alan Wong, Arya D. McCarthy, and Kyle Gorman (2020).
24+
Massively multilingual pronunciation mining with WikiPron.
25+
In LREC, to appear.
26+
1827
Command-line tool
1928
-----------------
2029

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

101-
In the near future we will release grapheme-to-phoneme models and modeling
102-
software [in a separate
110+
Models
111+
------
112+
113+
We host grapheme-to-phoneme models and modeling software [in a separate
103114
repository](https://github.com/kylebgorman/wikipron-modeling).
104115

105116
Development

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import setuptools
33

44

5-
_VERSION = "1.0.0"
5+
_VERSION = "1.1.0"
66

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

0 commit comments

Comments
 (0)
Failed to load comments.