Skip to content

Commit

Permalink
Bump version to 0.1.9 & Add license, changelog, repo and other fields…
Browse files Browse the repository at this point in the history
… in Cargo.toml
  • Loading branch information
ybda committed Dec 31, 2023
1 parent cf06411 commit bdb258d
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!-- markdownlint-disable-file MD024 -->

# 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.1.9] - 2023-12-31

### Added

- Information in Cargo.toml.
- This file (CHANGELOG.md).
- Restriction of alias replacement by default (--force flag for new subcommand)

[0.1.9]: https://github.com/ybda/shmarks/commits/v0.1.9
14 changes: 12 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,21 @@
[package]
name = "shmarks"
version = "0.1.8"
version = "0.1.9"
edition = "2021"
authors = ["Belkanov Dmitriy <[email protected]>"]
description = "Directory bookmarks for the shell."
license-file = "LICENSE"
categories = ["command-line-interface", "command-line-utilities"]
homepage = "https://github.com/ybda/shmarks"
repository = "https://github.com/ybda/shmarks"
readme = "README.md"
exclude = [
".vscode"
]
rust-version = "1.77.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lints.rust]
unsafe_code = "forbid"

[dependencies]
clap = { version = "4.4.12", features = ["cargo", "derive"] }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ List all saved marks like "/bin/ls -l" in column with dirs showed
```

## Note
- By default shmarks.toml located in $XDG_DATA_HOME or $HOME/.local/share. You could override it with $SHMARKS_LIST_PATH
- By default, shmarks.toml located in $XDG_DATA_HOME or $HOME/.local/share. You could override it with $SHMARKS_LIST_PATH
- It requires nightly Rust only because of the "std::path::absolute"

## Inspired by
Expand Down

0 comments on commit bdb258d

Please sign in to comment.