Skip to content

Commit

Permalink
chore: Release v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
donovanglover committed Oct 30, 2023
1 parent 1f91751 commit b7329e0
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 9 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.0] - 2023-10-30

### New Features

- Added colors to `--help`. Optionally disable with `NO_COLOR=1`.
- Simplified `--no-empty-before` and `--no-empty-after` to `--no-empty`. Old flags are preserved for backwards compatibility.
- Special workspaces now close by default when switching workspaces. Optionally disable with `--keep-special`.

## [0.1.0] - 2023-08-30

- Initial release.

[unreleased]: https://github.com/donovanglover/hyprnome/compare/0.2.0...HEAD
[0.2.0]: https://github.com/donovanglover/hyprnome/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/donovanglover/hyprnome/releases/tag/0.1.0
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.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hyprnome"
description = "GNOME-like workspace switching in Hyprland."
version = "0.1.0"
version = "0.2.0"
authors = ["Copyright (C) 2023 Donovan Glover <https://donovan.is/>"]
repository = "https://github.com/donovanglover/hyprnome"
edition = "2021"
Expand Down
10 changes: 5 additions & 5 deletions PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Donovan Glover <https://donovan.is/>
pkgname=hyprnome
pkgver=0.1.0
pkgver=0.2.0
pkgrel=1
pkgdesc="GNOME-like workspace switching in Hyprland"
arch=('x86_64')
Expand All @@ -22,10 +22,10 @@ package() {

install -Dm755 "target/release/hyprnome" "$pkgdir/usr/bin/hyprnome"

install -Dm644 "completions/_hyprnome" "$pkgdir/usr/share/zsh/site-functions/_hyprnome"
install -Dm644 "completions/hyprnome.bash" "$pkgdir/usr/share/bash-completion/completions/hyprnome"
install -Dm644 "completions/hyprnome.fish" "$pkgdir/usr/share/fish/vendor_completions.d/hyprnome.fish"
install -Dm644 "man/hyprnome.1" "$pkgdir/usr/share/man/man1/hyprnome.1"
install -Dm644 "target/completions/_hyprnome" "$pkgdir/usr/share/zsh/site-functions/_hyprnome"
install -Dm644 "target/completions/hyprnome.bash" "$pkgdir/usr/share/bash-completion/completions/hyprnome"
install -Dm644 "target/completions/hyprnome.fish" "$pkgdir/usr/share/fish/vendor_completions.d/hyprnome.fish"
install -Dm644 "target/man/hyprnome.1" "$pkgdir/usr/share/man/man1/hyprnome.1"

install -Dm644 "README.md" "$pkgdir/usr/share/doc/$pkgname/README.md"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ Alternatively, use `nix run nixpkgs#hyprnome` to try hyprnome without installing
### [Arch Linux](https://archlinux.org/)

```fish
git clone https://github.com/donovanglover/hyprnome -b 0.1.0 && cd hyprnome && makepkg -si
git clone https://github.com/donovanglover/hyprnome -b 0.2.0 && cd hyprnome && makepkg -si
```

### Other distributions

Follow the [install guide](https://www.rust-lang.org/tools/install) for Rust. Then, use cargo to install hyprnome.

```fish
cargo install --git https://github.com/donovanglover/hyprnome --tag 0.1.0
cargo install --git https://github.com/donovanglover/hyprnome --tag 0.2.0
```

## Usage
Expand Down

0 comments on commit b7329e0

Please sign in to comment.