Skip to content

Commit

Permalink
Release v1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
joouha committed Mar 30, 2022
1 parent 25e9587 commit 09a35a0
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 3 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.4.3 - (2022-03-30)
*********************

Added
=====

Expand Down
8 changes: 8 additions & 0 deletions docs/pages/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,10 @@ Options

Show the status bar

.. option:: --show-scroll-bar, --no-show-scroll-bar

Show the scroll bar

.. option:: --color-scheme {default,inverse,light,dark}

The color scheme to use
Expand Down Expand Up @@ -164,6 +168,10 @@ Options

Syntax highlighting theme

.. option:: --color-depth {1,4,8,24}

The color scheme to use

.. option::

List of file names to open
Expand Down
6 changes: 6 additions & 0 deletions docs/reference/euporie.app.dump.PseudoTTY.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
euporie.app.dump.PseudoTTY
==========================

.. currentmodule:: euporie.app.dump

.. autoclass:: PseudoTTY
1 change: 1 addition & 0 deletions docs/reference/euporie.app.dump.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ euporie.app.dump
:template: class.tpl.rst

DumpApp
PseudoTTY
1 change: 1 addition & 0 deletions docs/reference/euporie.commands.config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ euporie.commands.config
set_edit_mode
show_cell_borders
show_line_numbers
show_scroll_bar
show_status_bar
switch_background_pattern
tmux_terminal_graphics
Expand Down
6 changes: 6 additions & 0 deletions docs/reference/euporie.commands.config.show_scroll_bar.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
euporie.commands.config.show\_scroll\_bar
=========================================

.. currentmodule:: euporie.commands.config

.. autofunction:: show_scroll_bar
6 changes: 6 additions & 0 deletions docs/reference/euporie.commands.notebook.copy_outputs.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
euporie.commands.notebook.copy\_outputs
=======================================

.. currentmodule:: euporie.commands.notebook

.. autofunction:: copy_outputs
1 change: 1 addition & 0 deletions docs/reference/euporie.commands.notebook.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ euporie.commands.notebook
cells_to_raw
change_kernel
copy_cells
copy_outputs
cut_cells
delete_cells
enter_cell_edit_mode
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.2"
__version__ = "1.4.3"
__logo__ = "⚈"
__strapline__ = "A TUI editor for Jupyter notebooks"
__author__ = "Josiah Outram Halstead"
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.2"
version = "1.4.3"
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.2"
assert __version__ == "1.4.3"

0 comments on commit 09a35a0

Please sign in to comment.