Skip to content

Commit 5bd2788

Browse files
mhaselgithub-actions[bot]
authored andcommitted
chore(release): prepare v1.0.4
1 parent 9c4a594 commit 5bd2788

20 files changed

Lines changed: 94 additions & 89 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.4](https://github.com/PLC-lang/rusty/releases/tag/v1.0.4) - 2026-07-01
6+
7+
### Fixed
8+
9+
- Invalid numeric literal strings no longer crash the application … (#1789)
510
## [1.0.3](https://github.com/PLC-lang/rusty/releases/tag/v1.0.3) - 2026-07-01
611

712
### Fixed

Cargo.lock

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plc-compiler"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
authors = [
55
"Ghaith Hachem <ghaith.hachem@gmail.com>",
66
"Mathias Rieder <mathias.rieder@gmail.com>",
@@ -18,19 +18,19 @@ default = []
1818
verify = []
1919

2020
[dependencies]
21-
plc_source = { path = "./compiler/plc_source", version = "1.0.3" }
22-
plc_ast = { path = "./compiler/plc_ast", version = "1.0.3" }
23-
plc_util = { path = "./compiler/plc_util", version = "1.0.3" }
24-
plc_diagnostics = { path = "./compiler/plc_diagnostics", version = "1.0.3" }
25-
plc_index = { path = "./compiler/plc_index", version = "1.0.3" }
26-
section_mangler = { path = "./compiler/section_mangler", version = "1.0.3" }
27-
plc_llvm = { path = "./compiler/plc_llvm", version = "1.0.3" }
21+
plc_source = { path = "./compiler/plc_source", version = "1.0.4" }
22+
plc_ast = { path = "./compiler/plc_ast", version = "1.0.4" }
23+
plc_util = { path = "./compiler/plc_util", version = "1.0.4" }
24+
plc_diagnostics = { path = "./compiler/plc_diagnostics", version = "1.0.4" }
25+
plc_index = { path = "./compiler/plc_index", version = "1.0.4" }
26+
section_mangler = { path = "./compiler/section_mangler", version = "1.0.4" }
27+
plc_llvm = { path = "./compiler/plc_llvm", version = "1.0.4" }
2828
logos.workspace = true
2929
clap = { version = "3.0", features = ["derive"] }
3030
indexmap = { workspace = true, features = ["serde"] }
3131
generational-arena = { version = "0.2.8", features = ["serde"] }
3232
shell-words = "1.1.0"
33-
plc_derive = { path = "./compiler/plc_derive", version = "1.0.3" }
33+
plc_derive = { path = "./compiler/plc_derive", version = "1.0.4" }
3434
which.workspace = true
3535
siphasher = "1"
3636
log.workspace = true
@@ -49,13 +49,13 @@ tempfile.workspace = true
4949
num = "0.4"
5050
insta.workspace = true
5151
pretty_assertions = "1.3.0"
52-
driver = { path = "./compiler/plc_driver/", package = "plc_driver", version = "1.0.3" }
53-
project = { path = "./compiler/plc_project/", package = "plc_project", version = "1.0.3", features = [
52+
driver = { path = "./compiler/plc_driver/", package = "plc_driver", version = "1.0.4" }
53+
project = { path = "./compiler/plc_project/", package = "plc_project", version = "1.0.4", features = [
5454
"integration",
5555
] }
56-
plc_xml = { path = "./compiler/plc_xml", version = "1.0.3" }
56+
plc_xml = { path = "./compiler/plc_xml", version = "1.0.4" }
5757
test_utils = { path = "./tests/test_utils" }
58-
plc_lowering = { path = "./compiler/plc_lowering", version = "1.0.3" }
58+
plc_lowering = { path = "./compiler/plc_lowering", version = "1.0.4" }
5959
serial_test = "*"
6060
tempfile.workspace = true
6161
encoding_rs.workspace = true

compiler/plc_ast/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "plc_ast"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
license = "LGPL-3.0"
66
description = "AST types for the PLC Structured Text compiler"
77

88
[dependencies]
9-
plc_util = { path = "../plc_util", version = "1.0.3" }
10-
plc_source = { path = "../plc_source", version = "1.0.3" }
9+
plc_util = { path = "../plc_util", version = "1.0.4" }
10+
plc_source = { path = "../plc_source", version = "1.0.4" }
1111
chrono.workspace = true
1212
# Enabled the RC feature (for Arc<T>) see: https://serde.rs/feature-flags.html#-features-rc
1313
serde = { workspace = true, features = ["rc"] }

compiler/plc_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plc_derive"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
license = "LGPL-3.0"
66
description = "Derive macros for the PLC Structured Text compiler"

compiler/plc_diagnostics/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "plc_diagnostics"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
license = "LGPL-3.0"
66
description = "Diagnostics and error reporting for the PLC Structured Text compiler"
77

88
[dependencies]
99
codespan-reporting = "0.12"
10-
plc_ast = { path = "../plc_ast", version = "1.0.3" }
11-
plc_source = { path = "../plc_source", version = "1.0.3" }
10+
plc_ast = { path = "../plc_ast", version = "1.0.4" }
11+
plc_source = { path = "../plc_source", version = "1.0.4" }
1212
serde_json.workspace = true
1313
serde.workspace = true
1414
toml.workspace = true

compiler/plc_driver/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plc_driver"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
build = "build.rs"
66
license = "LGPL-3.0"
@@ -9,15 +9,15 @@ description = "IEC 61131-3 Structured Text compiler"
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
plc = { path = "../..", package = "plc-compiler", version = "1.0.3" }
13-
ast = { path = "../plc_ast/", package = "plc_ast", version = "1.0.3" }
14-
project = { path = "../plc_project/", package = "plc_project", version = "1.0.3" }
15-
source_code = { path = "../plc_source/", package = "plc_source", version = "1.0.3" }
16-
cfc = { path = "../plc_xml/", package = "plc_xml", version = "1.0.3" }
17-
plc_diagnostics = { path = "../plc_diagnostics/", version = "1.0.3" }
18-
plc_index = { path = "../plc_index", version = "1.0.3" }
19-
plc_lowering = { path = "../plc_lowering", version = "1.0.3" }
20-
plc_header_generator = { path = "../plc_header_generator", version = "1.0.3" }
12+
plc = { path = "../..", package = "plc-compiler", version = "1.0.4" }
13+
ast = { path = "../plc_ast/", package = "plc_ast", version = "1.0.4" }
14+
project = { path = "../plc_project/", package = "plc_project", version = "1.0.4" }
15+
source_code = { path = "../plc_source/", package = "plc_source", version = "1.0.4" }
16+
cfc = { path = "../plc_xml/", package = "plc_xml", version = "1.0.4" }
17+
plc_diagnostics = { path = "../plc_diagnostics/", version = "1.0.4" }
18+
plc_index = { path = "../plc_index", version = "1.0.4" }
19+
plc_lowering = { path = "../plc_lowering", version = "1.0.4" }
20+
plc_header_generator = { path = "../plc_header_generator", version = "1.0.4" }
2121

2222
serde.workspace = true
2323
serde_json.workspace = true
@@ -34,7 +34,7 @@ encoding_rs.workspace = true
3434
encoding_rs_io.workspace = true
3535
anyhow.workspace = true
3636
itertools.workspace = true
37-
plc_util = { path = "../plc_util", version = "1.0.3" }
37+
plc_util = { path = "../plc_util", version = "1.0.4" }
3838

3939
[dev-dependencies]
4040
pretty_assertions = "1.3.0"

compiler/plc_header_generator/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
[package]
22
name = "plc_header_generator"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
license = "LGPL-3.0"
66
description = "C header file generator for the PLC Structured Text compiler"
77

88
[dependencies]
9-
plc = { path = "../..", package = "plc-compiler", version = "1.0.3" }
10-
plc_diagnostics = { path = "../plc_diagnostics/", version = "1.0.3" }
11-
plc_ast = { path = "../plc_ast/", version = "1.0.3" }
12-
plc_source = { path = "../plc_source/", version = "1.0.3" }
9+
plc = { path = "../..", package = "plc-compiler", version = "1.0.4" }
10+
plc_diagnostics = { path = "../plc_diagnostics/", version = "1.0.4" }
11+
plc_ast = { path = "../plc_ast/", version = "1.0.4" }
12+
plc_source = { path = "../plc_source/", version = "1.0.4" }
1313
tera = "1"
1414
clap = { version = "3.0", features = ["derive"] }
1515
regex.workspace = true

compiler/plc_index/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "plc_index"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2021"
55
license = "LGPL-3.0"
66
description = "Symbol index and type system for the PLC Structured Text compiler"
77

88
[dependencies]
9-
plc_ast = { path = "../plc_ast", version = "1.0.3" }
10-
plc_source = { path = "../plc_source", version = "1.0.3" }
11-
plc_diagnostics = { path = "../plc_diagnostics", version = "1.0.3" }
9+
plc_ast = { path = "../plc_ast", version = "1.0.4" }
10+
plc_source = { path = "../plc_source", version = "1.0.4" }
11+
plc_diagnostics = { path = "../plc_diagnostics", version = "1.0.4" }
1212
#plc_project = { path = "../plc_project" } # TODO: This will create a circular dependency
1313
rustc-hash.workspace = true
1414
encoding_rs.workspace = true

compiler/plc_llvm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "plc_llvm"
3-
version = "1.0.3"
3+
version = "1.0.4"
44
edition = "2024"
55
license = "LGPL-3.0"
66
description = "LLVM Wrapper for C++ functions not exposed by inkwell or in the C API"

0 commit comments

Comments
 (0)