Skip to content

Commit a08d1fa

Browse files
author
dashu
committed
Release 0.1.1
1 parent f3eef23 commit a08d1fa

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rspin"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "A desktop sticky image viewer for Wayland"
66
authors = ["Your Name"]

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -124,33 +124,33 @@ window-rule {
124124

125125
```bash
126126
# Download from releases page
127-
wget https://github.com/dashu041120/rspin/releases/download/v0.1.0/rspin_0.1.0_amd64.deb
128-
sudo dpkg -i rspin_0.1.0_amd64.deb
127+
wget https://github.com/dashu041120/rspin/releases/download/v0.1.1/rspin_0.1.1_amd64.deb
128+
sudo dpkg -i rspin_0.1.1_amd64.deb
129129
```
130130

131131
**Fedora/RHEL (RPM):**
132132

133133
```bash
134134
# Download from releases page
135-
wget https://github.com/dashu041120/rspin/releases/download/v0.1.0/rspin-0.1.0-1.x86_64.rpm
136-
sudo dnf install rspin-0.1.0-1.x86_64.rpm
135+
wget https://github.com/dashu041120/rspin/releases/download/v0.1.1/rspin-0.1.1-1.x86_64.rpm
136+
sudo dnf install rspin-0.1.1-1.x86_64.rpm
137137
```
138138

139139
**Arch Linux:**
140140

141141
```bash
142142
# Download from releases page
143-
wget https://github.com/dashu041120/rspin/releases/download/v0.1.0/rspin-0.1.0-1-x86_64.pkg.tar.zst
144-
sudo pacman -U rspin-0.1.0-1-x86_64.pkg.tar.zst
143+
wget https://github.com/dashu041120/rspin/releases/download/v0.1.1/rspin-0.1.1-1-x86_64.pkg.tar.zst
144+
sudo pacman -U rspin-0.1.1-1-x86_64.pkg.tar.zst
145145
```
146146

147147
**Portable (any Linux):**
148148

149149
```bash
150150
# Download tarball from releases page
151-
wget https://github.com/dashu041120/rspin/releases/download/v0.1.0/rspin-0.1.0-x86_64-linux.tar.gz
152-
tar xzf rspin-0.1.0-x86_64-linux.tar.gz
153-
cd rspin-0.1.0-x86_64-linux
151+
wget https://github.com/dashu041120/rspin/releases/download/v0.1.1/rspin-0.1.1-x86_64-linux.tar.gz
152+
tar xzf rspin-0.1.1-x86_64-linux.tar.gz
153+
cd rspin-0.1.1-x86_64-linux
154154
./install.sh # Installs to ~/.local/bin
155155
```
156156

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
flake-utils.lib.eachDefaultSystem (system:
1111
let
1212
pkgs = nixpkgs.legacyPackages.${system};
13-
version = "0.1.0";
13+
version = "0.1.1";
1414
in
1515
{
1616
packages.default = pkgs.stdenv.mkDerivation {

packaging/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ This directory contains packaging configurations for different Linux distributio
77
Packages are automatically built on GitHub Actions when you push a tag:
88

99
```bash
10-
git tag v0.1.0
11-
git push origin v0.1.0
10+
git tag v0.1.1
11+
git push origin v0.1.1
1212
```
1313

1414
The workflow will build DEB, RPM, and Arch packages and attach them to the GitHub release.

packaging/arch/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: dashu041120
22
pkgname=rspin
3-
pkgver=0.1.0
3+
pkgver=0.1.1
44
pkgrel=1
55
pkgdesc="A desktop sticky image viewer for Wayland"
66
arch=('x86_64')

packaging/arch/PKGBUILD.local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Maintainer: dashu041120
22
# Local build PKGBUILD (builds from current directory)
33
pkgname=rspin
4-
pkgver=0.1.0
4+
pkgver=0.1.1
55
pkgrel=1
66
pkgdesc="A desktop sticky image viewer for Wayland"
77
arch=('x86_64')

scripts/build-packages.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fi
5555

5656
# Build tar.gz portable package
5757
echo -e "${BLUE}==> Building portable tar.gz package...${NC}"
58-
TARBALL_NAME="rspin-${CARGO_PKG_VERSION:-0.1.0}-x86_64-linux"
58+
TARBALL_NAME="rspin-${CARGO_PKG_VERSION:-0.1.1}-x86_64-linux"
5959
TARBALL_DIR="dist/$TARBALL_NAME"
6060
rm -rf "$TARBALL_DIR"
6161
mkdir -p "$TARBALL_DIR"

0 commit comments

Comments
 (0)