Skip to content

Commit

Permalink
release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstantinKlepikov committed May 24, 2023
1 parent 7732214 commit c121438
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 21 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,34 @@ BoardGameBuilder changelog
==========================

.. release notes
Release v2.0.0 (2023-05-24)
===========================

Features
--------

- #284:
- move all base classes to base.py
- BaseTool is a genericmodel now
- all yools inherited from BaseModel with tipe of nested item
- remove id from all classes except items
- redefine logger
- remove add() method from tools. Rewrite setitemm in Component. Component now is Components
- Components are removed from all classes
- Components ias a Generic with BaseItem as TypeVar. Only subclasses can be used - Dice, Card, Step, etc
- now we have dict, dot and update interface for Components
- Components cant be used in Base class and subclasses
- all deal() method s now needs Components as arg
- -> (https://github.com/KonstantinKlepikov/BoardGameBuilder/issues/284)
- #258:
- current of steps now is a list of Step. Is a heapq to
- test this
- -> (https://github.com/KonstantinKlepikov/BoardGameBuilder/issues/285)
- #286:
- Components refactored as Generic and Mapping, bounded to items
- -> (https://github.com/KonstantinKlepikov/BoardGameBuilder/issues/286)


Release v0.1.2 (2023-01-27)
===========================

Expand Down
2 changes: 1 addition & 1 deletion bgameb/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@

from incremental import Version

__version__ = Version("bgameb", 0, 1, 2)
__version__ = Version("bgameb", 2, 0, 0)
__all__ = ["__version__"]
13 changes: 0 additions & 13 deletions bgameb/newsfragments/284.feature

This file was deleted.

4 changes: 0 additions & 4 deletions bgameb/newsfragments/285.feature

This file was deleted.

3 changes: 0 additions & 3 deletions bgameb/newsfragments/286.feature

This file was deleted.

0 comments on commit c121438

Please sign in to comment.