Skip to content

Commit cbac1a2

Browse files
committed
🔖 Version update to 1.0.1 - Windows bugfix
1 parent 1088c67 commit cbac1a2

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.0.1] - February 13th, 2021
8+
9+
### Fixed
10+
- Windows system issue cannot find specified path
11+
712
## [1.0.0] - February 13th, 2021
813

914
### Added

code_opener_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.0.1'
22

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "code-opener-cli"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
description = "The CLI to handle your projects and Editors smartly"
55
authors = ["Shantanu Joshi <shantanujoshi7030@gmail.com>"]
66
readme = "README.md"
@@ -16,5 +16,5 @@ typer = {extras = ["all"], version = "^0.3.2"}
1616
pytest = "^5.2"
1717

1818
[build-system]
19-
requires = ["poetry-core>=1.0.0"]
19+
requires = ["poetry-core>=1.0.1"]
2020
build-backend = "poetry.core.masonry.api"

tests/test_code_opener_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '1.0.0'
5+
assert __version__ == '1.0.1'

0 commit comments

Comments
 (0)