Skip to content

Commit

Permalink
release: v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amrbashir committed Jan 29, 2025
1 parent 5a55032 commit 24e8ac7
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 5 deletions.
11 changes: 11 additions & 0 deletions .scripts/release.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
$path = "kal/Cargo.toml"
(Get-Content $path).replace("version = `"0.0.0`"", "version = `"$args`"") | Set-Content $path

$path = "kal-ui/package.json"
(Get-Content $path).replace("`"version`": `"0.0.0`"", "`"version`": `"$args`"") | Set-Content $path

git add .
git commit -m "release: v$args";
git tag "v$args"
git push
git push --tags
2 changes: 1 addition & 1 deletion Cargo.lock

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

5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,15 @@ Also I want to write plugins in any programming langauge and not just C# and .NE

## Config

Config by default is read from `$HOME/.config/kal.toml`
Config by default is read from `$HOME/.config/kal.toml`.

## Future plans

- [ ] Config schema.
- [ ] Commands to control Kal itself
- [ ] Settings UI
- [ ] Plugins in any programming language (C ABI compatible)
- [ ] Native-like hover tooltips
- [ ] Linux

## Development
Expand Down
2 changes: 1 addition & 1 deletion kal-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "kal-ui",
"version": "0.0.0",
"version": "0.1.0",
"license": "MIT",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion kal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "kal"
version = "0.0.0"
version = "0.1.0"
description = "Keyboard-driven app launcher and productivity tool."
authors = ["Amr Bashir <contact@amrbashir.me>"]
repository = "https://github.com/amrbashir/kal"
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"name": "kal",
"version": "0.0.0",
"description": "Keyboard-driven app launcher and productivity tool.",
"author": "Amr Bashir <contact@amrbashir.me>",
"repository": "https://github.com/amrbashir/kal",
Expand Down

0 comments on commit 24e8ac7

Please sign in to comment.