Skip to content

Commit

Permalink
Bump version (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
AnHeuermann committed Jul 8, 2024
1 parent c996935 commit 01fc7a8
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 35 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Afterwards the OpenModelica Package manager installs Modelica libraries.
### Inputs

- `version`: Version of OpenModelica to install.
- For example `'nightly'`, `'stable'`, `'release'`, `'1.18'` or `'1.18.0'`.
- For example `'nightly'`, `'stable'`, `'release'`, `'1.23'` or `'1.23.0'`.
- `architecture`: Choose between 64 and 32 bit architecture. Can be `'64'` or
`'32'`.
- `packages`: OpenModelica APT packages to install. Only used on Linux OS.
Expand All @@ -38,6 +38,9 @@ Afterwards the OpenModelica Package manager installs Modelica libraries.
| nightly | Linux | amd64, arm64, armhf, i386 | ✔️ |
| stable | Linux | amd64, arm64, armhf, i386 | ✔️ |
| release | Linux | amd64, arm64, armhf, i386 | ✔️ |
| 1.23.1 | Linux | amd64, arm64, armhf, i386 | ✔️ |
| 1.23.0 | Linux | amd64, arm64, armhf, i386 | ✔️ |
| 1.22.4 | Linux | amd64, arm64, armhf, i386 | ✔️ |
| 1.22.3 | Linux | amd64, arm64, armhf, i386 | ✔️ |
| 1.22.2 | Linux | amd64, arm64, armhf, i386 | ✔️ |
| 1.22.1 | Linux | amd64, arm64, armhf, i386 | ✔️ |
Expand All @@ -62,6 +65,11 @@ Afterwards the OpenModelica Package manager installs Modelica libraries.
| nightly | Windows | 64bit | ✔️ |
| stable | Windows | 64bit | ✔️ |
| release | Windows | 64bit | ✔️ |
| 1.23.1 | Windows | 64bit | ✔️ |
| 1.23.0 | Windows | 64bit | ✔️ |
| 1.22.3 | Windows | 64bit | ✔️ |
| 1.22.2 | Windows | 64bit | ✔️ |
| 1.22.1 | Windows | 64bit | ✔️ |
| 1.22.0 | Windows | 64bit | ✔️ |
| 1.21.0 | Windows | 64bit | ✔️ |
| 1.20.0 | Windows | 64bit | ✔️ |
Expand All @@ -80,7 +88,7 @@ Afterwards the OpenModelica Package manager installs Modelica libraries.
```yaml
- uses: OpenModelica/setup-openmodelica@v1.0
with:
version: '1.22.1'
version: '1.23.1'
packages: |
'omc'
'omsimulator'
Expand Down
2 changes: 1 addition & 1 deletion __tests__/installer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function linuxTests(): void {
let outVer: installer.VersionType

outVer = installer.getOMVersion('1')
expect(outVer.version).toEqual('1.22.3')
expect(outVer.version).toEqual('1.23.1')

outVer = installer.getOMVersion('1.18')
expect(outVer.version).toEqual('1.18.1')
Expand Down
60 changes: 30 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 32 additions & 2 deletions src/versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,25 @@
"version": "stable",
"type": "stable",
"arch": "64",
"address": "https://build.openmodelica.org/omc/builds/windows/releases/1.22/3/64bit/OpenModelica-v1.22.3-64bit.exe"
"address": "https://build.openmodelica.org/omc/builds/windows/releases/1.23/1/64bit/OpenModelica-v1.23.1-64bit.exe"
},
{
"version": "release",
"type": "release",
"arch": "64",
"address": "https://build.openmodelica.org/omc/builds/windows/releases/1.22/3/64bit/OpenModelica-v1.22.3-64bit.exe"
"address": "https://build.openmodelica.org/omc/builds/windows/releases/1.23/1/64bit/OpenModelica-v1.23.1-64bit.exe"
},
{
"version": "1.23.1",
"type": "release",
"arch": "64",
"address": "https://build.openmodelica.org/omc/builds/windows/releases/1.23/1/64bit/OpenModelica-v1.23.1-64bit.exe"
},
{
"version": "1.23.0",
"type": "release",
"arch": "64",
"address": "https://build.openmodelica.org/omc/builds/windows/releases/1.23/0/64bit/OpenModelica-v1.23.0-64bit.exe"
},
{
"version": "1.22.3",
Expand Down Expand Up @@ -106,6 +118,24 @@
"type": "stable",
"address": "https://build.openmodelica.org/apt"
},
{
"version": "1.23.1",
"aptname": "1.23.1-1",
"type": "release",
"address": "https://build.openmodelica.org/omc/builds/linux/releases/1.23.1/"
},
{
"version": "1.23.0",
"aptname": "1.23.0-1",
"type": "release",
"address": "https://build.openmodelica.org/omc/builds/linux/releases/1.23.0/"
},
{
"version": "1.22.4",
"aptname": "1.22.4-1",
"type": "release",
"address": "https://build.openmodelica.org/omc/builds/linux/releases/1.22.4/"
},
{
"version": "1.22.3",
"aptname": "1.22.3-1",
Expand Down

0 comments on commit 01fc7a8

Please sign in to comment.