From 293c75456e313bb42e1557535d8b3a94c96ee34d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomek=20W=C3=B3jcik?= Date: Fri, 19 Jan 2024 22:49:57 +0100 Subject: [PATCH] Version bumped to `1.1.0` --- CHANGELOG.md | 9 +++++++++ Makefile | 2 +- pathsd.nimble | 2 +- src/pathsd.nim | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17d6241..43a94b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,16 @@ 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). +## [1.1.0] - 2024-01-19 + +### Added + +- Support for comments (`#`) in parts files. +- Explicitly inherit paths from `PATH` environment variable. +- Ability to deduplicate output paths. + ## [1.0.2] - 2023-12-05 ### Added + - Initial release. diff --git a/Makefile b/Makefile index 43fa646..b092e56 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = 1.0.2 +VERSION = 1.1.0 PREFIX ?= /usr/local OS != uname -o diff --git a/pathsd.nimble b/pathsd.nimble index a6988d8..7707bd5 100644 --- a/pathsd.nimble +++ b/pathsd.nimble @@ -1,6 +1,6 @@ # Package -version = "1.0.2" +version = "1.1.0" author = "Tomek Wójcik " description = "pathsd by BTHLabs" license = "MIT" diff --git a/src/pathsd.nim b/src/pathsd.nim index 28b75b4..7e32c0b 100644 --- a/src/pathsd.nim +++ b/src/pathsd.nim @@ -9,7 +9,7 @@ type output*: seq[string] errorCode*: ErrorCode -const version = "1.0.2" +const version = "1.1.0" const usage_string = """usage: pathsd [--version | --help] [-v | -q] [-s shell] search_path ...""" const version_string = fmt"""pathsd {version}""" const help_string = fmt"""pathsd {version} by BTHLabs