Skip to content

Commit 9aaa761

Browse files
author
César Román
committed
chore(release): prepare for v8.1.21
1 parent b22fc99 commit 9aaa761

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## v8.1.21 (2022-09-30)
2+
3+
### Feat
4+
5+
- **system**: add new roster functions from 8.1.21 (#99)
6+
- **system**: add util.getModules function (#98)
7+
8+
### Refactor
9+
10+
- use correct typing notation for args and kwargs (#97)
11+
112
## v8.1.20.post5 (2022-09-21)
213

314
### Feat

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ python2 -m pip uninstall ignition-api
7676

7777
### Downloading from releases
7878

79-
You may also download the code targeted to your desired version from the [releases page](https://github.com/ignition-api/7.9/releases) and add it as a dependency to your scripting project.
79+
You may also download the code targeted to your desired version from the [releases page](https://github.com/ignition-api/8.1/releases) and add it as a dependency to your scripting project.
8080

8181
#### Using as a dependency in PyCharm
8282

@@ -101,7 +101,7 @@ This project consists of the following packages:
101101

102102
#### com.inductiveautomation
103103

104-
This package includes supporting Inductive Automation's classes and interfaces. For more information, see documentation here: <https://files.inductiveautomation.com/sdk/javadoc/ignition81/8.1.20/index.html>.
104+
This package includes supporting Inductive Automation's classes and interfaces. For more information, see documentation here: <https://files.inductiveautomation.com/sdk/javadoc/ignition81/8.1.21/index.html>.
105105

106106
#### java/javax
107107

@@ -113,7 +113,7 @@ This package includes supporting classes and interfaces from Apache Commons Math
113113

114114
#### org.json
115115

116-
This package includes supporting classes and interfaces from the Inductive Automation's `org.json` package, see documentation here: <https://files.inductiveautomation.com/sdk/javadoc/ignition81/8.1.20/org/json/package-summary.html>
116+
This package includes supporting classes and interfaces from the Inductive Automation's `org.json` package, see documentation here: <https://files.inductiveautomation.com/sdk/javadoc/ignition81/8.1.21/org/json/package-summary.html>
117117

118118
#### org.python
119119

src/system/__version__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Package information."""
22

3-
__version__ = "8.1.20"
4-
__build__ = "2022082313"
5-
__cycle__ = ".post5"
3+
__version__ = "8.1.21"
4+
__build__ = "2022092908"
5+
__cycle__ = ""
66
__package_version__ = "{0}{1}".format(__version__, __cycle__) # type: str

0 commit comments

Comments
 (0)