-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ShiJbey/0.9.4
0.9.4
- Loading branch information
Showing
101 changed files
with
8,222 additions
and
7,138 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres mostly to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
There may be minor-version updates that contain breaking changes, but do not warrant | ||
incrementing to a completely new version number. | ||
|
||
## [0.9.4] | ||
|
||
**0.9.4 is not compatible with 0.9.3** | ||
|
||
### Added | ||
|
||
- `Building` class to identify when a business currently exists within the town vs. | ||
when it is archived within the ECS for story sifting. | ||
- Systems to update business components when they are pending opening, open for business, and closed for business and | ||
awaiting demolition. | ||
- New status components to identify Businesses at different phases in their lifecycle: | ||
`ClosedForBusiness`, `OpenForBusiness`, `PendingOpening` | ||
- New PyGame UI elements for displaying information about a GameObject | ||
- Strings may be used as world seeds | ||
- `CHANGELOG.md` file | ||
|
||
### Updated | ||
|
||
- PyGame sample to use the new API | ||
- Docstrings for `Simulation` and `SimulationBuilder` classes | ||
- `SimulationBuilder` class | ||
- Moved isort configuration to `pyproject.toml` | ||
|
||
### Removed | ||
|
||
- Jupyter notebook and pygame samples | ||
- samples category from dependencies within `setup.cfg` | ||
- `events`, `town`, `land grid`, and `relationships` fields from `NeighborlyJsonExporter`. | ||
These are duplicated when serializing the resources. | ||
- `SimulationBuilder.add_system()` and `SimulationBuilder.add_resource()`. To add | ||
these, users need to encapsulate their content within a plugin | ||
- Flake8 configuration from `setup.cfg` | ||
|
||
### Fixed | ||
|
||
- Bug in Business operating hours regex that did not recognize AM/PM strings | ||
- `setup.cfg` did not properly include data files in the wheel build. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include LICENSE | ||
include CHANGELOG.md | ||
include CODE_OF_CONDUCT.md | ||
recursive-include src/neighborly/plugins/default_plugin/data * | ||
recursive-include src/neighborly/plugins/defaults/data * |
Oops, something went wrong.