Skip to content

Commit

Permalink
Release v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joouha committed Apr 19, 2022
1 parent e1dc183 commit 710327f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ Notable changes to this project will be documented in this file.
Upcoming
********

----

*********************
v1.5.0 - (2022-04-19)
*********************

Added
=====

Expand Down
2 changes: 1 addition & 1 deletion euporie/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""This package defines the euporie application and its components."""

__app_name__ = "euporie"
__version__ = "1.4.3"
__version__ = "1.5.0"
__logo__ = "⚈"
__strapline__ = "A TUI editor for Jupyter notebooks"
__author__ = "Josiah Outram Halstead"
Expand Down
2 changes: 1 addition & 1 deletion euporie/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def __call__(
"log_file": {
"flags_": ["--log-file"],
"nargs": "?",
"default": "-",
"default": "",
"type": str,
"help": "File path for logs",
"schema_": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "euporie"
version = "1.4.3"
version = "1.5.0"
description = "Euporie is a text-based user interface for running and editing Jupyter notebooks"
authors = ["Josiah Outram Halstead <josiah@halstead.email>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_euporie.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@

def test_version() -> "None":
"""Version is correct."""
assert __version__ == "1.4.3"
assert __version__ == "1.5.0"

0 comments on commit 710327f

Please sign in to comment.