Skip to content

Commit

Permalink
New NESasm version 0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gutomaia committed Apr 2, 2024
1 parent eb9b483 commit b6afad5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 15 deletions.
9 changes: 4 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

<!-- insertion marker -->
## Unreleased
## [v0.0.9](https://github.com/gutomaia/nesasm_py/releases/tag/v0.0.9) - 2024-04-02

<small>[Compare with latest](https://github.com/gutomaia/nesasm_py/compare/v0.0.5...HEAD)</small>
<small>[Compare with v0.0.5](https://github.com/gutomaia/nesasm_py/compare/v0.0.5...v0.0.9)</small>

### Features

- docs ([c0db013](https://github.com/gutomaia/nesasm_py/commit/c0db0130e7a62536b9d3bd52ca6db4ac03997513) by Guto Maia).
- able to pass a list of labels to the semantic compiler ([f556c7c](https://github.com/gutomaia/nesasm_py/commit/f556c7c8ac1c91352d2ec54a4af000db70dc4146) by Guto Maia).
- docs ([5cf339c](https://github.com/gutomaia/nesasm_py/commit/5cf339c2e2be0c1144b9ff1b10b99038216a2f9d) by Guto Maia).
- able to pass a list of labels to the semantic compiler ([e2d5776](https://github.com/gutomaia/nesasm_py/commit/e2d577662a067db714246d73d314f283f6cef4bf) by Guto Maia).

<!-- insertion marker -->
## [v0.0.5](https://github.com/gutomaia/nesasm_py/releases/tag/v0.0.5) - 2015-03-09

<small>[Compare with v0.0.4](https://github.com/gutomaia/nesasm_py/compare/v0.0.4...v0.0.5)</small>
Expand Down
12 changes: 5 additions & 7 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,17 @@ and this project adheres to `Semantic Versioning <http://semver.org/spec/v2.0.0.

:raw-html-m2r:`<!-- insertion marker -->`

Unreleased
----------
`v0.0.9 <https://github.com/gutomaia/nesasm_py/releases/tag/v0.0.9>`_ - 2024-04-02
--------------------------------------------------------------------------------------

:raw-html-m2r:`<small>[Compare with latest](https://github.com/gutomaia/nesasm_py/compare/v0.0.5...HEAD)</small>`
:raw-html-m2r:`<small>[Compare with v0.0.5](https://github.com/gutomaia/nesasm_py/compare/v0.0.5...v0.0.9)</small>`

Features
^^^^^^^^


* docs (\ `c0db013 <https://github.com/gutomaia/nesasm_py/commit/c0db0130e7a62536b9d3bd52ca6db4ac03997513>`_ by Guto Maia).
* able to pass a list of labels to the semantic compiler (\ `f556c7c <https://github.com/gutomaia/nesasm_py/commit/f556c7c8ac1c91352d2ec54a4af000db70dc4146>`_ by Guto Maia).

:raw-html-m2r:`<!-- insertion marker -->`
* docs (\ `5cf339c <https://github.com/gutomaia/nesasm_py/commit/5cf339c2e2be0c1144b9ff1b10b99038216a2f9d>`_ by Guto Maia).
* able to pass a list of labels to the semantic compiler (\ `e2d5776 <https://github.com/gutomaia/nesasm_py/commit/e2d577662a067db714246d73d314f283f6cef4bf>`_ by Guto Maia).

`v0.0.5 <https://github.com/gutomaia/nesasm_py/releases/tag/v0.0.5>`_ - 2015-03-09
--------------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements_licenses.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
+----------------------+-----------+--------------------------------------+
| msgpack | 1.0.8 | Apache Software License |
+----------------------+-----------+--------------------------------------+
| nesasm | 0.0.8 | UNKNOWN |
| nesasm | 0.0.9 | UNKNOWN |
+----------------------+-----------+--------------------------------------+
| packaging | 24.0 | Apache Software License; BSD License |
+----------------------+-----------+--------------------------------------+
Expand Down
2 changes: 1 addition & 1 deletion nesasm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import argparse
from nesasm.compiler import compile_file

__version__ = '0.0.8'
__version__ = '0.0.9'
__prog__ = 'nesasm'


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nesasm"
version = "0.0.8"
version = "0.0.9"
description = "nesasm"
authors = ["Guto Maia <[email protected]>"]

Expand Down

0 comments on commit b6afad5

Please sign in to comment.