Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Expand Up @@ -4,7 +4,7 @@ description = "A modern, fast file copying tool"
repository = "https://github.com/UnbreakableMJ/copy"
readme = "README_CRATES.md"
keywords = ["copy", "file", "cli", "backup", "utility"]
version = "0.1.4"
version = "0.1.5"
authors = [
"Bhuminjay Soni <bhuminjaysoni@gmail.com>", # original author of cpx
"Mohamed Hammad <Mohamed.Hammad@SpacecraftSoftware.org>", # copy fork maintainer
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ copy --version

### Pre-built Binaries

Prebuilt Linux binaries are attached to each [release](https://github.com/UnbreakableMJ/copy/releases). The current release is **v0.1.4**:
Prebuilt Linux binaries are attached to each [release](https://github.com/UnbreakableMJ/copy/releases). The current release is **v0.1.5**:

| Target | Asset |
|--------|-------|
Expand All @@ -96,7 +96,7 @@ Prebuilt Linux binaries are attached to each [release](https://github.com/Unbrea

```bash
# Example: x86_64 (glibc)
curl -fsSL https://github.com/UnbreakableMJ/copy/releases/download/v0.1.4/copy-linux-x86_64.tar.gz | tar xz
curl -fsSL https://github.com/UnbreakableMJ/copy/releases/download/v0.1.5/copy-linux-x86_64.tar.gz | tar xz
./copy --version
```

Expand Down
4 changes: 2 additions & 2 deletions README_CRATES.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ copy --version

### Pre-built Binaries

Prebuilt Linux binaries are attached to each [release](https://github.com/UnbreakableMJ/copy/releases). The current release is **v0.1.4**:
Prebuilt Linux binaries are attached to each [release](https://github.com/UnbreakableMJ/copy/releases). The current release is **v0.1.5**:

| Target | Asset |
|--------|-------|
Expand All @@ -98,7 +98,7 @@ Prebuilt Linux binaries are attached to each [release](https://github.com/Unbrea

```bash
# Example: x86_64 (glibc)
curl -fsSL https://github.com/UnbreakableMJ/copy/releases/download/v0.1.4/copy-linux-x86_64.tar.gz | tar xz
curl -fsSL https://github.com/UnbreakableMJ/copy/releases/download/v0.1.5/copy-linux-x86_64.tar.gz | tar xz
./copy --version
```

Expand Down
2 changes: 1 addition & 1 deletion guix.scm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

(package
(name "copy")
(version "0.1.4") ; keep in sync with Cargo.toml
(version "0.1.5") ; keep in sync with Cargo.toml
(source (local-file "." "copy-checkout"
#:recursive? #t
;; Only tracked files — drops target/, result, .git and
Expand Down
2 changes: 1 addition & 1 deletion nix/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ let
in
rustPlatform.buildRustPackage {
pname = "copy";
version = "0.1.4"; # keep in sync with Cargo.toml
version = "0.1.5"; # keep in sync with Cargo.toml

inherit src;

Expand Down
6 changes: 3 additions & 3 deletions packaging/aur/.SRCINFO
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
pkgbase = copy
pkgdesc = A modern, fast file copying tool
pkgver = 0.1.4
pkgver = 0.1.5
pkgrel = 1
url = https://github.com/UnbreakableMJ/copy
arch = x86_64
arch = aarch64
license = MIT
makedepends = cargo
depends = gcc-libs
source = copy-0.1.4.tar.gz::https://github.com/UnbreakableMJ/copy/archive/refs/tags/v0.1.4.tar.gz
sha256sums = 2408b701416e44d99d0ec53e9873e1ca3d8df293e8a5bfc03a89b5e92cd5441a
source = copy-0.1.5.tar.gz::https://github.com/UnbreakableMJ/copy/archive/refs/tags/v0.1.5.tar.gz
sha256sums = SKIP

pkgname = copy
5 changes: 3 additions & 2 deletions packaging/aur/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Maintainer: Mohamed Hammad <Mohamed.Hammad@SpacecraftSoftware.org>
pkgname=copy
pkgver=0.1.4
pkgver=0.1.5
pkgrel=1
pkgdesc="A modern, fast file copying tool"
arch=('x86_64' 'aarch64')
Expand All @@ -9,7 +9,8 @@ license=('MIT')
depends=('gcc-libs')
makedepends=('cargo')
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
sha256sums=('2408b701416e44d99d0ec53e9873e1ca3d8df293e8a5bfc03a89b5e92cd5441a')
# Filled in via `updpkgsums` once the v0.1.5 tag/tarball is published.
sha256sums=('SKIP')

prepare() {
cd "$pkgname-$pkgver"
Expand Down