Skip to content

Commit 5b2321e

Browse files
committed
refactoring: rename dictionary file
1 parent 1a5f507 commit 5b2321e

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and 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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66

77
setuptools.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=[

yoficator/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464

6565
if __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.

0 commit comments

Comments
 (0)