From a813776683d7111ce9169aa13428ab416ac55b88 Mon Sep 17 00:00:00 2001 From: Antonio Abbatangelo Date: Sun, 16 Apr 2023 16:09:06 -0400 Subject: [PATCH] Release v0.2.0 --- Cargo.toml | 2 +- README.md | 5 +++++ xdvdfs-cli/Cargo.toml | 4 +++- xdvdfs-core/Cargo.toml | 2 ++ xdvdfs-core/README.md | 3 +++ 5 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a632738..2b3ab24 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ [workspace.package] license = "MIT" -version = "0.1.0" +version = "0.2.0" edition = "2021" repository = "https://github.com/antangelo/xdvdfs" homepage = "https://github.com/antangelo/xdvdfs" diff --git a/README.md b/README.md index ba4b70a..965a012 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,8 @@ $ cargo install xdvdfs-cli Otherwise, it can be run from the workspace root as the default project. +A binary distribution of xdvdfs-cli is also available in the github releases. + ### Usage Running `xdvdfs` with no args will bring up the help screen, showing supported subcommands: @@ -57,3 +59,6 @@ Without the `alloc` feature, only basic metadata features are supported. The `al functions that require allocation (such as `read_data_all` above. The source code for xdvdfs-cli provides a more detailed example of how to use xdvdfs-core in an environment with std. + +Note that xdvdfs is currently not API stable, and following semver with major version 0, each minor version bump may or +may not include breaking changes. diff --git a/xdvdfs-cli/Cargo.toml b/xdvdfs-cli/Cargo.toml index eb1545f..9df20df 100644 --- a/xdvdfs-cli/Cargo.toml +++ b/xdvdfs-cli/Cargo.toml @@ -10,8 +10,10 @@ license.workspace = true repository.workspace = true homepage.workspace = true +exclude = ["**/*.iso", "**/*.xiso"] + [dependencies] -xdvdfs = { path = "../xdvdfs-core", version = "0.1.0" } +xdvdfs = { path = "../xdvdfs-core", version = "0.2.0" } clap = { version = "4.2.1", features = ["derive"] } md-5 = { version = "0.10.5", default-features = false } diff --git a/xdvdfs-core/Cargo.toml b/xdvdfs-core/Cargo.toml index e832554..feeb821 100644 --- a/xdvdfs-core/Cargo.toml +++ b/xdvdfs-core/Cargo.toml @@ -10,6 +10,8 @@ license.workspace = true repository.workspace = true homepage.workspace = true +exclude = ["**/*.iso", "**/*.xiso"] + [dependencies] bincode = "1.3.3" proc-bitfield = "0.2.2" diff --git a/xdvdfs-core/README.md b/xdvdfs-core/README.md index 0669518..2bf889b 100644 --- a/xdvdfs-core/README.md +++ b/xdvdfs-core/README.md @@ -22,3 +22,6 @@ Without the `alloc` feature, only basic metadata features are supported. The `al functions that require allocation (such as `read_data_all` above. The source code for xdvdfs-cli provides a more detailed example of how to use xdvdfs-core in an environment with std. + +Note that xdvdfs is currently not API stable, and following semver with major version 0, each minor version bump may or +may not include breaking changes.