-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.3.0: Refactor rename crates (#14)
* refactor: Renames mpm -> libmpm mpm-cli -> mpm * feat: adds a changelog * feat: Version bump to 0.3.0
- Loading branch information
Showing
24 changed files
with
62 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.3.0] - 2024-01-04 | ||
|
||
- Refactor: renamed mpm to libmpm and mpm-cli to mpm | ||
|
||
## [0.2.0] - 2024-01-04 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[workspace] | ||
resolver = "2" | ||
members = ["mpm", "mpm-cli"] | ||
exclude = ["*.png"] | ||
members = ["libmpm", "mpm"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[package] | ||
name = "libmpm" | ||
version = "0.3.0" | ||
edition = "2021" | ||
license = "AGPL-3.0" | ||
|
||
[features] | ||
default = ["verify"] | ||
verify = [] | ||
choco = [] | ||
brew = [] | ||
apt = [] | ||
dnf = [] | ||
yum = ["dnf"] | ||
|
||
|
||
[dependencies] | ||
|
||
[[test]] | ||
name = "basic" | ||
required-features = ["verify", "choco", "brew", "apt", "dnf", "yum"] |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#![doc = include_str!("libdoc.md")] | ||
use std::{ | ||
borrow::Cow, | ||
error::Error, | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,20 @@ | ||
[package] | ||
name = "mpm" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
edition = "2021" | ||
license = "AGPL-3.0" | ||
|
||
[features] | ||
default = ["verify"] | ||
verify = [] | ||
choco = [] | ||
brew = [] | ||
apt = [] | ||
dnf = [] | ||
yum = ["dnf"] | ||
|
||
|
||
[dependencies] | ||
|
||
[[test]] | ||
name = "basic" | ||
required-features = ["verify", "choco", "brew", "apt", "dnf", "yum"] | ||
anyhow = "1.0.75" | ||
clap = { version = "4.4.6", features = ["derive"] } | ||
colored = "2.0.4" | ||
strum = { version = "0.25.0", features = ["derive"] } | ||
tabled = { version = "0.14.0", features = ["color"] } | ||
libmpm = { path = "../libmpm", features = [ | ||
"verify", | ||
"brew", | ||
"choco", | ||
"apt", | ||
"dnf", | ||
"yum", | ||
] } |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters