Skip to content

Commit

Permalink
Version upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
aviraljain99 committed Jun 28, 2022
1 parent 7d6dcfb commit 151faa7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 22 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
Date is year-month-day format.

## [1.0.1] - 2022-06-28
### Added
- Resampling utility
### Changed
- Reformat all Python code using Black formatter
- Clean-up of Dockerfile
- Caching of port-audio for Kaldi build
- Clean-up protobuf install in Dockerfile

## [0.97.2] - 2021-12-23
### ADDED
### Added
- Delete buttons for datasets, pron dicts and models
- Minor bug fixes

Expand Down
39 changes: 20 additions & 19 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,66 +12,67 @@
#
import os
import sys
sys.path.insert(0, os.path.abspath('..'))

sys.path.insert(0, os.path.abspath(".."))

# -- Project information -----------------------------------------------------

project = 'Elpis'
copyright = '2020, The University of Queensland'
author = 'Ben Foley, Nicholas Lambourne, Nay San, Matthew Low, Harry Keightley'
project = "Elpis"
copyright = "2020, The University of Queensland"
author = "Ben Foley, Nicholas Lambourne, Nay San, Matthew Low, Harry Keightley"

# The full version, including alpha/beta/rc tags
release = '0.97.2'
release = "1.0.1"

master_doc = 'index'
master_doc = "index"
# -- General configuration ---------------------------------------------------

# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.coverage',
'sphinx_autodoc_typehints',
'recommonmark'
"sphinx.ext.autodoc",
"sphinx.ext.coverage",
"sphinx_autodoc_typehints",
"recommonmark",
]

# Show undocumented members in docs
autodoc_default_options = {
'undoc-members': True,
"undoc-members": True,
}

# Mock to get RTD docs to compile
autodoc_mock_imports = ["pytest"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
templates_path = ["_templates"]

# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
# We also exclude the "ugly" auto-generated elpis.rst file and replace it with our own.
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'elpis/elpis.rst']
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", "elpis/elpis.rst"]


# -- Options for HTML output -------------------------------------------------

# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinx_rtd_theme'
html_logo = '_static/img/logo.png'
html_theme = "sphinx_rtd_theme"
html_logo = "_static/img/logo.png"
html_theme_options = {
'logo_only': True,
"logo_only": True,
}
github_url = 'https://github.com/CoEDL/elpis'
github_url = "https://github.com/CoEDL/elpis"

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
html_static_path = ["_static"]
html_css_files = [
'style.css',
"style.css",
]

# -- Extension configuration -------------------------------------------------
2 changes: 1 addition & 1 deletion elpis/gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "elpis-gui",
"version": "0.97.2",
"version": "1.0.1",
"private": true,
"license": "Apache-2.0",
"dependencies": {
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 = "elpis"
version = "0.97.2"
version = "1.0.1"
description = "Elpis is a tool which allows language workers with minimal computational experience to build their own speech recognition models to automatically transcribe audio."
authors = ["CoEDL"]
license = "Apache-2.0"
Expand Down

0 comments on commit 151faa7

Please sign in to comment.