Skip to content

Commit

Permalink
release(aura): 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fosskers committed Jul 30, 2024
1 parent ca3d04b commit eaac629
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ Aura 4 represents a signicant body of work to port Aura from Haskell to Rust.
The motivations for this rewrite are [discussed here][motivation]. Overall, Aura
is now much more performant and has a 4x smaller binary.

The main [aura][aura] package, not `aura-bin`, is now the recommended means of
installation.

It is no longer necessary to run `aura` with `sudo`. Aura is now internally
aware of when `sudo` is necessary and will prompt you as needed.

Expand All @@ -25,6 +28,7 @@ used on remote servers and within Docker containers.
For existing users, further details involving the transition from v3 to v4 are
available in the [Migration Guide][migration].

[aura]: https://aur.archlinux.org/packages/aura
[motivation]: https://fosskers.github.io/aura/faq.html#why-did-you-rewrite-aura-in-rust
[migration]: https://fosskers.github.io/aura/migration.html

Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.lock

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

4 changes: 2 additions & 2 deletions rust/aura-pm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aura-pm"
version = "4.0.0-rc3"
version = "4.0.0"
authors = ["Colin Woodbury <[email protected]>"]
edition = "2021"
description = "Install and manage Arch Linux packages."
Expand All @@ -14,7 +14,7 @@ name = "aura"
path = "src/main.rs"

[dependencies]
aura-core = { version = "0.7.1", path = "../aura-core" }
aura-core = { version = "0.8", path = "../aura-core" }
r2d2-alpm = { version = "0.2", path = "../r2d2-alpm" }

alpm = "3.0"
Expand Down
9 changes: 5 additions & 4 deletions rust/aura-pm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ Guide](https://fosskers.github.io/aura/).

## Installation

Since this crate is still only a Release Candidate, you'll need to specify the
version yourself when installing it via `cargo`:

```
cargo install aura-pm --version 4.0.0-rc3
cargo install aura-pm
```

This will install the executable `aura` to `~/.cargo/bin/`. However, as this
will not include manual files or completions, it is recommended that you install
Aura via the official AUR packages.

0 comments on commit eaac629

Please sign in to comment.