Skip to content

Commit

Permalink
cleaner
Browse files Browse the repository at this point in the history
  • Loading branch information
0x5ac committed Jul 23, 2023
1 parent 440210f commit 0d33d14
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 13 deletions.
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -249,12 +249,18 @@ gitrel-push-part2:
# need two parts otherwise version is wrong.
make
git commit -m 'bump' -a
git tag v$(NEXT_VERSION)

git push origin HEAD
git push github

foop:
echo $(THIS_VERSION)

tohub:
git commit --allow-empty -m v$(THIS_VERSION)
git tag v$(THIS_VERSION)
git push
git push --tags
git-push:
make bump-version
make gitrel-push-part2
Expand Down
4 changes: 2 additions & 2 deletions doc/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<a id="Version"></a>

# Version 0.2.105
# Version 0.2.108

---

Expand All @@ -29,7 +29,7 @@ It comes with a set of macro variable definitions for a Haas mill with NCD. And

# Table of Contents

1. [Version 0.2.105](#Version)
1. [Version 0.2.108](#Version)
2. [Introduction.](#Introduction)
3. [Usage.](#Usage)
4. [Install:](#Install)
Expand Down
2 changes: 1 addition & 1 deletion doc/readme.org
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[[file:https://img.shields.io/badge/License-MIT%20v3-blue.svg]]
[[file:https://github.com/0x5ac/p2g/actions/workflows/build.yml/badge.svg]]

* Version 0.2.105
* Version 0.2.108
:PROPERTIES:
:CUSTOM_ID: Version
:END:
Expand Down
6 changes: 3 additions & 3 deletions doc/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Table of Contents
_________________

1. Version 0.2.105
1. Version 0.2.108
2. Introduction.
3. Usage.
4. Install:
Expand All @@ -35,7 +35,7 @@ _________________
<file:https://github.com/0x5ac/p2g/actions/workflows/build.yml/badge.svg>


1 Version 0.2.105
1 Version 0.2.108
==================

----------------------------------------------------------------------
Expand Down Expand Up @@ -67,7 +67,7 @@ _________________
Table of Contents
_________________

1. Version 0.2.105
1. Version 0.2.108
2. Introduction.
3. Usage.
4. Install:
Expand Down
2 changes: 1 addition & 1 deletion examples/probecalibrate.nc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
O0001 (probecalibrate: 0.2.105)
O0001 (probecalibrate: 0.2.108)
( Symbol Table )

( KNOWNLEN_OFF : 0.000, 0.000, -0.250 )
Expand Down
2 changes: 1 addition & 1 deletion examples/vicecenter.nc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
O0001 (vicecenter: 0.2.105)
O0001 (vicecenter: 0.2.108)
( Symbol Table )

( MABS_ABOVE_VICE : -27.500,-13.000,-17.500 )
Expand Down
2 changes: 1 addition & 1 deletion p2g/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@
"VERSION",
"load_tool",
]
VERSION = "0.2.105"
VERSION = "0.2.108"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
version = "0.2.105"
version = "0.2.108"
name = "p2g"
description = "Transpile python into cnc gcode."
authors = ["sac <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<a id="Version"></a>

# Version 0.2.105
# Version 0.2.108

---

Expand All @@ -29,7 +29,7 @@ It comes with a set of macro variable definitions for a Haas mill with NCD. And

# Table of Contents

1. [Version 0.2.105](#Version)
1. [Version 0.2.108](#Version)
2. [Introduction.](#Introduction)
3. [Usage.](#Usage)
4. [Install:](#Install)
Expand Down

0 comments on commit 0d33d14

Please sign in to comment.