Skip to content
This repository has been archived by the owner on Mar 24, 2024. It is now read-only.

Commit

Permalink
0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jgirardet committed Dec 18, 2019
1 parent 425c2ca commit 1631494
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ A priori les enfants qui ont beson d'un ordiateur à l'école donc les Dys en g

Pour l'instant disponible sous Windows et Linux (Mac possible si quelqu'un le demande).

- Version Windows : [MyDevoirs.exe](https://github.com/jgirardet/mydevoirs/releases/download/0.6.2/MyDevoirs.exe)
- Version Linux : [MyDevoirs](https://github.com/jgirardet/mydevoirs/releases/download/0.6.2/MyDevoirs)
- Version Windows : [MyDevoirs.exe](https://github.com/jgirardet/mydevoirs/releases/download/0.6.3/MyDevoirs.exe)
- Version Linux : [MyDevoirs](https://github.com/jgirardet/mydevoirs/releases/download/0.6.3/MyDevoirs)

- puis sous Windows :
- windows va vous mettre en garde car l'application n'est pas certifiée mais pas d'inquiétude, il suffit de cliquer sur `informations complémentaires` puis `exécuter quand même`:
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 = "mydevoirs"
version = "0.6.2"
version = "0.6.3"
description = ""
authors = ["jgirardet <[email protected]>"]

Expand Down
11 changes: 7 additions & 4 deletions scripted/bump_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,13 @@ def update_doc_link(previous, new_version):
print(f"updating doc with version {get_poestry_version()}")
update_doc_link(version, new_version)

print(subprocess.check_output(f"git commit -a -m {new_version}", shell=True))
print(subprocess.check_output(f"git tag {new_version}", shell=True))
print(
subprocess.check_output(f"git commit -a -m {new_version}", shell=True).decode()
)
print(subprocess.check_output(f"git tag {new_version}", shell=True).decode())

assert get_tag() == get_poestry_version()

print(f"Nouvelle Version {get_poestry_version()} !!!\n pushing")
print(subprocess.check_output(f"git push", shell=True))
print(subprocess.check_output(f"git push --tags", shell=True))
print(subprocess.check_output(f"git push", shell=True).decode())
print(subprocess.check_output(f"git push --tags", shell=True).decode())

0 comments on commit 1631494

Please sign in to comment.