Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Apsurt committed Jan 2, 2024
1 parent bb189dc commit 15d6e37
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pyNonogram
# pyNonogram v1.0.0

Framework for puzzle game *Nonogram*. It was made thinking about projects that aim to solve puzzles. I wanted to create comprehensive library that would take some work of nonogram developers' shoulders.

Expand Down
9 changes: 6 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@

### In Progress

- [ ] Add sphinx docstrings in vs code

### Done
### Done

- [x] Create framework
- [x] Add typing
Expand All @@ -18,4 +17,8 @@
- [x] Add documentation page
- [x] Add errors
- [x] Add tests
- [x] Add more examples
- [x] Add more examples

### Abandoned ❌

- [ ] Add sphinx docstrings in vs code
2 changes: 1 addition & 1 deletion pyNonogram/___init___.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__author__ = 'Tymon Becella'
__license__ = 'MIT'
__copyright__ = 'Copyright 2024 Tymon Becella'
__version__ = '0.3.0'
__version__ = '1.0.0'

from .errors import *
from .nonogram_grid import *
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyNonogram"
version = "0.3.0"
version = "1.0.0"
authors = [
{ name="Tymon Becella", email="[email protected]" },
]
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
numpy>=1.19.5
pytest>=6.2.4
numpy>=1.19.5
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyNonogram
version = 0.3.0
version = 1.0.0

[options]
install_requires =
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def run(self):
requirements.append('typing>=3.5.2.2')

setup(name='pyNonogram',
version='0.3.0',
version='1.0.0',
description='Nonogram framework for Python',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 15d6e37

Please sign in to comment.