Skip to content

Commit

Permalink
v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tiffany352 committed Apr 21, 2024
1 parent c5ec3ce commit e34e126
Show file tree
Hide file tree
Showing 14 changed files with 756 additions and 735 deletions.
6 changes: 3 additions & 3 deletions 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Definition: rod = 5.5 yard = 5.0292 meter (length; m)

```toml
[dependencies]
rink-core = "0.7"
rink-core = "0.8"
```

## License
Expand Down
6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "rink"
version = "0.7.0"
version = "0.8.0"
description = "Unit conversion tool, similar to frink"
homepage = "https://rinkcalc.app"
homepage = "https://rinkcalc.app/about"
repository = "https://github.com/tiffany352/rink-rs"
readme = "../README.md"
license = "MPL-2.0"
Expand Down Expand Up @@ -33,7 +33,7 @@ async-std = { version = "1.9", features = ["attributes"], default-features = fal
ubyte = { version = "0.10.3", features = ["serde"] }

[dependencies.rink-core]
version = "0.7"
version = "0.8"
path = "../core"

[dependencies.rink-sandbox]
Expand Down
2 changes: 1 addition & 1 deletion cli/src/repl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pub fn noninteractive<T: BufRead>(mut f: T, config: &Config, show_prompt: bool)
}

const HELP_TEXT: &'static str = "The rink manual can be found with `man 7 rink`, or online:
https://github.com/tiffany352/rink-rs/blob/master/docs/rink.7.adoc
https://rinkcalc.app/manual
To quit, type `quit` or press Ctrl+D.";

pub fn interactive(config: &Config) -> Result<()> {
Expand Down
21 changes: 21 additions & 0 deletions core/BREAKING-CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## Rink 0.8.0

`gpl` feature has been renamed to `bundle-files`.

`rink_core::DATES_FILE` and `rink_core::CURRENCY_FILE` are now `Option`s
and are only Some if `bundle-files` is set, otherwise they are None,
just like `DEFAULT_FILE`.

The intention is for distro packages to install these files to the
filesystem (e.g. in `/usr/share/rink/`) instead of embedding them in the
executable. See [PACKAGING.md](../PACKAGING.md) for more info.

### Behavior

- Unrecognized directives in definitions.units now print an error
instead of being silently ignored.
- Categories for non-units are now ignored. This may be improved in the
future, but will require changing categories to be namespaced.
- The output has changed slightly, as numbers can be represented as
recurring digits now.

## Rink 0.7.0

### Behavior
Expand Down
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "rink-core"
version = "0.7.0"
version = "0.8.0"
description = "Unit conversion library behind rink"
homepage = "https://github.com/tiffany352/rink-rs"
homepage = "https://rinkcalc.app/about"
repository = "https://github.com/tiffany352/rink-rs"
readme = "README.md"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion irc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "rink-irc"
version = "0.4.0"
description = "IRC bot for Rink"
homepage = "https://github.com/tiffany352/rink-rs"
homepage = "https://rinkcalc.app/about"
repository = "https://github.com/tiffany352/rink-rs"
license = "MPL-2.0"

Expand Down
6 changes: 3 additions & 3 deletions rink-js/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "rink-js"
version = "0.7.0"
version = "0.8.0"
description = "Wasm bindings to Rink, for use in rink-web"
homepage = "https://github.com/tiffany352/rink-rs"
homepage = "https://rinkcalc.app/about"
repository = "https://github.com/tiffany352/rink-rs"
readme = "README.md"
license = "MPL-2.0"
Expand All @@ -16,7 +16,7 @@ default = ["console_error_panic_hook"]

[dependencies.rink-core]
path = "../core"
version = "0.7"
version = "0.8"
features = ["bundle-files"]

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion sandbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rink-sandbox"
version = "0.6.1"
edition = "2018"
description = "Library for limiting memory usage and time spent of code, and allowing interrupts (ctrl+C)."
homepage = "https://rinkcalc.app"
homepage = "https://rinkcalc.app/about"
repository = "https://github.com/tiffany352/rink-rs"
readme = "README.md"
license = "MPL-2.0"
Expand Down
4 changes: 2 additions & 2 deletions web/currency/package-lock.json

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

4 changes: 2 additions & 2 deletions web/currency/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"type": "module",
"author": "Tiffany Bennett (https://tiffnix.com)",
"name": "rink-currency-updater",
"version": "0.6.3",
"version": "0.8.0",
"repository": "https://github.com/tiffany352/rink-rs",
"homepage": "https://rinkcalc.app",
"homepage": "https://rinkcalc.app/about",
"description": "Fetches currency data for rink",
"license": "MPL-2.0",
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions web/package-lock.json

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

4 changes: 2 additions & 2 deletions web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"type": "module",
"author": "Tiffany Bennett (https://tiffnix.com)",
"name": "rink-web-soupault",
"version": "0.6.3",
"version": "0.8.0",
"repository": "https://github.com/tiffany352/rink-rs",
"homepage": "https://rinkcalc.app",
"homepage": "https://rinkcalc.app/about",
"description": "Static site generation for rinkcalc.app",
"license": "MPL-2.0",
"devDependencies": {
Expand Down
Loading

0 comments on commit e34e126

Please sign in to comment.