Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jd-develop committed Dec 7, 2024
1 parent 3afec56 commit e04ac22
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ to str)
* `$` and the following identifier can now be spaced (`$ id` is now valid)
* `paraghraphs` argument of function `lorem.ipsum` is now optional and defaults
to 1
* Version ID has been increased to `11`.

### Fixed
* Fixed a crash in `math.log` on base=1
Expand Down
2 changes: 1 addition & 1 deletion README.fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Nougaro. Un langage de programmation.](repo-image/repo-image.png)

Voici Nougaro version `1.1.0`.
Voici Nougaro version `1.2.0`.

Nougaro est un langage de programmation, interprété en Python.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

![Nougaro. A programming Language.](repo-image/repo-image.png)

This is Nougaro version `1.1.0`.
This is Nougaro version `1.2.0`.

Nougaro is a programming language interpreted in Python.

Expand Down
4 changes: 2 additions & 2 deletions noug_version.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"major": 1,
"minor": 1,
"minor": 2,
"patch": 0,
"phase": "stable",
"release-serial": 0,
"version-id": 10,
"version-id": 11,
"data-version": 7,
"lib-version": 4
}
6 changes: 3 additions & 3 deletions tests/test_file.noug
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import _conffiles as cf
def test_nougaro(print_OK)
var start_time = time.time()

assert __noug_version__ == "1.1.0"
assert __noug_version__ == "1.2.0"
import noug_version
assert noug_version.version_list == [1, 1, 0, "stable", 0]
assert noug_version.clean_version_for_nuitka_under_windows() == "1.1.0"
assert noug_version.version_list == [1, 2, 0, "stable", 0]
assert noug_version.clean_version_for_nuitka_under_windows() == "1.2.0"
assert noug_version.clean_version_for_nuitka_under_windows(0, 0) == None
assert noug_version.clean_version_for_gh(0, 0) == None

Expand Down

0 comments on commit e04ac22

Please sign in to comment.