Skip to content

Commit 74ea18b

Browse files
committed
Updated version number and changelog.
1 parent 122dc5b commit 74ea18b

File tree

7 files changed

+42
-14
lines changed

7 files changed

+42
-14
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "4.6.1"
16+
version = "4.6.2"
1717
authors = ["Frodo45127 <[email protected]>"]
1818
rust-version = "1.80"
1919
edition = "2021"

Changelog.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,14 @@ If you're looking for the changes included in the latest beta (against the lates
88

99
## [Unreleased]
1010

11+
## [4.6.2]
12+
### Changed
13+
- Opening a translation in the translator with unformatted characters and saving it again will correctly format the unformatted characters.
14+
15+
### Fixed
16+
- Fixed translator failing to unformat || and \\\\n characters on save.
17+
- Fixed "Invalid Escapes" diagnostic not working.
18+
1119
## [4.6.1]
1220
### Added
1321
- Implemented support for all cs2.parsed files from Rome 2, Attila and Thrones (lib-only).
@@ -1737,7 +1745,8 @@ If you're looking for the changes included in the latest beta (against the lates
17371745
## [2.1.4] - 2020-08-15
17381746
- For this update and older ones, check the release page.
17391747

1740-
[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.6.1...HEAD
1748+
[Unreleased]: https://github.com/Frodo45127/rpfm/compare/v4.6.2...HEAD
1749+
[4.6.2]: https://github.com/Frodo45127/rpfm/compare/v4.6.1...v4.6.2
17411750
[4.6.1]: https://github.com/Frodo45127/rpfm/compare/v4.6.0...v4.6.1
17421751
[4.6.0]: https://github.com/Frodo45127/rpfm/compare/v4.5.4...v4.6.0
17431752
[4.5.4]: https://github.com/Frodo45127/rpfm/compare/v4.5.3...v4.5.4

rpfm_cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ rust-version.workspace = true
1616
[dependencies]
1717

1818
# Internal dependencies.
19-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log", "integration_git"] }
20-
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.1" }
19+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.2", features = ["integration_log", "integration_git"] }
20+
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.2" }
2121

2222
# Error managing.
2323
anyhow = "1.0"

rpfm_extensions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ rust-version.workspace = true
1515
[dependencies]
1616

1717
# Internal dependencies.
18-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
18+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.2", features = ["integration_log", "integration_assembly_kit", "support_error_bincode"] }
1919

2020
# Basic get/set support.
2121
getset = "^0.1"

rpfm_ui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ default = ["enable_tools"]
2828
[dependencies]
2929

3030
# Internal dependencies.
31-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log", "integration_git"] }
32-
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.1" }
31+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.2", features = ["integration_log", "integration_git"] }
32+
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.2" }
3333
rpfm_ui_common = { path = "../rpfm_ui_common" }
3434

3535
# Config dependencies.

rpfm_ui_common/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ support_soundbank = ["rpfm_lib/support_soundbank"]
1919
[dependencies]
2020

2121
# Internal dependencies.
22-
rpfm_lib = { path = "../rpfm_lib", version = "4.6.1", features = ["integration_log"] }
23-
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.1" }
22+
rpfm_lib = { path = "../rpfm_lib", version = "4.6.2", features = ["integration_log"] }
23+
rpfm_extensions = { path = "../rpfm_extensions", version = "4.6.2" }
2424

2525
# Config dependencies.
2626
directories = "^6.0"

0 commit comments

Comments
 (0)