Skip to content

Commit

Permalink
prepare 0.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
raphamorim committed Sep 24, 2023
1 parent 41e1cbc commit eeae2f5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## In progress

- TBD

## 0.0.20

- Fix cursor disappearing in the first tab whenever a new tab is created with NativeTab.
- Fix settings for NativeTabs.
- New docs.
Expand All @@ -14,7 +18,7 @@
- Enable CPU-specific optimizations on aarch64-apple-darwin (Ref: https://github.com/raphamorim/rio/pull/235).
- Use release profile with optimization level as 3 (Ref: https://github.com/raphamorim/rio/pull/236).
- Use fixed dependency versions in sugarloaf
- Added split support along with the following actions `SplitVertically`, `SplitHorizontally` and `ClosePane`.
- Added split support along with the following actions `SplitVertically`, `SplitHorizontally` and `ClosePane` (support to split is still not available).

## 0.0.19

Expand Down
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.0.19"
version = "0.0.20"
authors = ["Raphael Amorim <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -26,12 +26,12 @@ documentation = "https://github.com/raphamorim/rio#readme"
# Note: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html#multiple-locations
# Sugarloaf example uses path when used locally, but uses
# version from crates.io when published.
sugarloaf = { path = "sugarloaf", version = "0.0.19" }
corcovado = { path = "corcovado", version = "0.0.19" }
rio-config = { path = "rio-config", version = "0.0.19" }
rio-proc-macros = { path = "rio-proc-macros", version = "0.0.19" }
copa = { path = "copa", default-features = true, version = "0.0.19" }
teletypewriter = { path = "teletypewriter", version = "0.0.19" }
sugarloaf = { path = "sugarloaf", version = "0.0.20" }
corcovado = { path = "corcovado", version = "0.0.20" }
rio-config = { path = "rio-config", version = "0.0.20" }
rio-proc-macros = { path = "rio-proc-macros", version = "0.0.20" }
copa = { path = "copa", default-features = true, version = "0.0.20" }
teletypewriter = { path = "teletypewriter", version = "0.0.20" }

bytemuck = { version = "1.13.1", features = [ "derive" ] }
log = "0.4.19"
Expand Down
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ update-version:
find CHANGELOG.md -type f -exec sed -i '' 's/In progress/In progress\n\n- TBD\n\n## $(new-version)/g' {} \;
find $(BUILD_MISC_DIR)/windows/rio.wxs -type f -exec sed -i '' 's/$(old-version)/$(new-version)/g' {} \;
find $(APP_TEMPLATE)/Contents/Info.plist -type f -exec sed -i '' 's/$(old-version)/$(new-version)/g' {} \;
find $(DOCS_DIR)/_config.yml -type f -exec sed -i '' 's/$(old-version)/$(new-version)/g' {} \;

release-macos-dmg:
# Using https://www.npmjs.com/package/create-dmg
Expand Down
2 changes: 1 addition & 1 deletion misc/osx/Rio.app/Contents/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
<key>CFBundleIconFile</key>
<string>rio.icns</string>
<key>CFBundleShortVersionString</key>
<string>0.0.19</string>
<string>0.0.20</string>
<key>CFBundleVersion</key>
<string>20230528.115631</string>
<key>CFBundleURLTypes</key>
Expand Down
2 changes: 1 addition & 1 deletion misc/windows/rio.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
UpgradeCode="87c21c74-dbd5-4584-89d5-46d9cd0c40a8"
Language="1033"
Codepage="1252"
Version="0.0.19"
Version="0.0.20"
Manufacturer="Raphael Amorim"
InstallerVersion="200">

Expand Down

0 comments on commit eeae2f5

Please sign in to comment.