Skip to content

Commit

Permalink
Bump version to 0.3.1
Browse files Browse the repository at this point in the history
This change bumps the version of the crate to 0.3.1. The following
notable changes have been made since 0.3.0:
- Introduced lock file usage to prevent multiple program instances from
  running concurrently
  - Added --force/-f option to force starting up in the presence of
    a stale lock file
- Made sure to write-protect config files and tasks while the program is
  running, to prevent accidental overwriting of intentional changes
- Properly support scrolling when editing tasks not fitting on the
  screen
- Set positive tag literals of tab as tags on a task newly added to an
  empty tab
- Removed support for writing output to a file provided as program
  argument
- Added support for --version/-V option to print program version
- Bumped termion dependency to 2.0
  • Loading branch information
d-e-s-o committed Apr 28, 2023
1 parent 90ce3df commit 3d030dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Unreleased
----------
0.3.1
-----
- Introduced lock file usage to prevent multiple program instances from
running concurrently
- Added `--force`/`-f` option to force starting up in the presence of
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notnow"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
rust-version = "1.65"
authors = ["Daniel Mueller <deso@posteo.net>"]
Expand All @@ -25,7 +25,7 @@ keywords = [
description = """
A terminal based task and TODO management software.
"""
include = ["src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
include = ["build.rs", "src/**/*", "LICENSE", "README.md", "CHANGELOG.md"]

[profile.release]
opt-level = "z"
Expand Down

0 comments on commit 3d030dc

Please sign in to comment.