File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
8+ ## 0.1.5 — 2025-02-15
9+ ### Changed
10+
11+ - [x] refactoring: dictionary file renamed: ` yoficator/_data/yoficator.dic ` to ` yoficator/_data/dictionary.ru_RU.txt `
12+
813## 0.1.4 — 2025-02-15
914### Changed
1015
Original file line number Diff line number Diff line change 66
77setuptools .setup (
88 name = 'yoficator' ,
9- version = '0.1.4 ' ,
9+ version = '0.1.5 ' ,
1010 description = 'A Russian text yoficator (ёфикатор)' ,
1111 long_description = long_description ,
1212 long_description_content_type = 'text/markdown' ,
1313 license = 'License :: OSI Approved :: MIT License' ,
1414 packages = ['yoficator' ],
1515 package_data = {
16- 'yoficator' : ['_data/yoficator.dic ' ],
16+ 'yoficator' : ['_data/dictionary.ru_RU.txt ' ],
1717 },
1818 include_package_data = True ,
1919 classifiers = [
Original file line number Diff line number Diff line change 6464
6565if __name__ == '__main__' :
6666 # TODO Better handle lowercase, uppercase
67- dictionary_file_path = os .path .abspath (os .path .dirname (__file__ )) + '/_data/yoficator.dic '
67+ dictionary_file_path = os .path .abspath (os .path .dirname (__file__ )) + '/_data/dictionary.ru_RU.txt '
6868
6969 if len (sys .argv ) > 1 :
7070 # Is the input a filename?
File renamed without changes.
You can’t perform that action at this time.
0 commit comments