Skip to content

Commit

Permalink
chore: bump version to 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbesler committed May 23, 2022
1 parent 881e0f8 commit 78909f9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .Zeugwerk/config.json
Expand Up @@ -6,7 +6,7 @@
"name": "Twingrind",
"plcs": [
{
"version": "0.2.0.0",
"version": "0.2.1.0",
"name": "Twingrind",
"type": "Library",
"frameworks": {},
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -27,7 +27,7 @@ Before profiling you should backup your code by commiting it to your version-con

Twingrind can either be downloaded from Github as or you can clone the [repository](https://github.com/stefanbesler/twingrind) and compile the library yourself. This guide will focus on the former use case.

First, [get the latest release](https://github.com/stefanbesler/twingrind/releases) of the Twingrind, the download will give you a file called "twingrind_0.2.0.0.compiled-library" and a python setup file. Note that the version number may differ from the file you actually downloaded.
First, [get the latest release](https://github.com/stefanbesler/twingrind/releases) of the Twingrind, the download will give you a file called "twingrind_0.2.1.0.compiled-library" and a python setup file. Note that the version number may differ from the file you actually downloaded.

### Twingrind PLC library

Expand All @@ -45,11 +45,11 @@ To make the Twingrind library available to the PLC, open the solution, which con

### pytwingrind python-module

Open a command prompt and navigate to the *pytwingrind-0.2.0-py3-none-any.whl* file. Then use the following command to install the python module on your system.
Open a command prompt and navigate to the *pytwingrind-0.2.1-py3-none-any.whl* file. Then use the following command to install the python module on your system.
Make sure that your python environment is reachable in your path variable.

```
pip install pytwingrind-0.2.0-py3-none-any.whl
pip install pytwingrind-0.2.1-py3-none-any.whl
```

After running the command successfully, the executable `twingrind.exe` should be available in your path.
Expand Down
4 changes: 2 additions & 2 deletions Twingrind/Twingrind/Twingrind/Twingrind.plcproj
Expand Up @@ -18,7 +18,7 @@
<Company>Stefan Besler</Company>
<Released>false</Released>
<Title>Twingrind</Title>
<ProjectVersion>0.2.0.0</ProjectVersion>
<ProjectVersion>0.2.1.0</ProjectVersion>
<Author>Stefan Besler and Contributers</Author>
<!-- <OutputType>Exe</OutputType>
<RootNamespace>MyApplication</RootNamespace>
Expand Down Expand Up @@ -115,4 +115,4 @@
<EnableUnmanagedDebugging>false</EnableUnmanagedDebugging>
</PropertyGroup>
-->
</Project>
</Project>
2 changes: 1 addition & 1 deletion pytwingrind/setup.py
Expand Up @@ -5,7 +5,7 @@

setup(
name="pytwingrind",
version=f"0.2.0",
version=f"0.2.1",
author="Stefan Besler",
author_email="stefan@besler.me",
description="Call-graph profiling for TwinCAT 3.",
Expand Down

0 comments on commit 78909f9

Please sign in to comment.