Skip to content

Commit 76ff50c

Browse files
committed
updated changelog
1 parent 4ac2e23 commit 76ff50c

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.
44

5+
## [0.33.1](https://github.com/ArkForgeLabs/Astra/compare/v0.33.0..v0.33.1) - 2025-10-31
6+
7+
### Bug Fixes
8+
9+
- fix for windows: avoid colon variable parse error in PowerShell Write-Error - ([d4913f7](https://github.com/ArkForgeLabs/Astra/commit/d4913f7db927bb30f57a11e2e1a2df3280dec2cd))
10+
- fix for runtime selection from user, adding the function(Select-Runtime) call to handle the selection - ([46e7215](https://github.com/ArkForgeLabs/Astra/commit/46e7215690c41e77ee5c4054cbd74db3e0d8bf90))
11+
- fix for windows: avoid colon variable parse error in PowerShell Write… (#110) - ([ef92a92](https://github.com/ArkForgeLabs/Astra/commit/ef92a928cd11e70fbd629ab6293afcd142ad57e9))
12+
- windows updates being broken - ([4ac2e23](https://github.com/ArkForgeLabs/Astra/commit/4ac2e23203d5426e290a2dd742fa43a8c6917af9))
13+
14+
### Fix
15+
16+
- don't use global variable `result` in middleware docs (#109) - ([094a308](https://github.com/ArkForgeLabs/Astra/commit/094a3088866384db4943692bafa7e2005388211b))
17+
18+
### Refactoring
19+
20+
- moved from luals to emmylua for language server. Added install scripts for different platforms - ([6878e0c](https://github.com/ArkForgeLabs/Astra/commit/6878e0cc7e81d0459f9dcc0e52b15e53e1ab004d))
21+
522
## [0.33.0](https://github.com/ArkForgeLabs/Astra/compare/v0.32.4..v0.33.0) - 2025-10-29
623

724
### Features
@@ -162,7 +179,7 @@ All notable changes to this project will be documented in this file. See [conven
162179
- `Astra.datetime` moved to lib `astra.lua.datetime` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
163180
- `Astra.http` moved to lib `astra.lua.http` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
164181
- `Astra.io` moved to lib `astra.lua.io` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
165-
- `Astra.pubsub` and `Astra.observable` moved to lib `astra.lua.stores` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
182+
- `Astra.pubsub` and `Astra.observable` moved to lib `astra.lua.stores` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
166183
- `Astra.new_templating_engine` moved to lib `astra.lua.jinja2` and `new_templating_engine` renamed to `new_engine` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
167184
- `Astra.validate_table` moved to lib `astra.lua.validate_table` - ([1c54ce2](https://github.com/ArkForgeLabs/Astra/commit/1c54ce23361849ffdb54d9ccadd7d33e976310d4))
168185
- moved the examples to the new api - ([da95232](https://github.com/ArkForgeLabs/Astra/commit/da952325157811087a5ff715aa4184abcd1d6114))

src/commands/upgrade.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ astra export"#
100100

101101
pub fn remove_old_runtime() -> Result<(), Box<dyn std::error::Error>> {
102102
let current_file_name = std::env::current_exe()?.to_string_lossy().to_string();
103-
std::fs::remove_file(format!("{current_file_name}_old"))?;
103+
if std::fs::exists(format!("{current_file_name}_old"))? {
104+
std::fs::remove_file(format!("{current_file_name}_old"))?;
105+
}
104106

105107
Ok(())
106108
}

0 commit comments

Comments
 (0)