Skip to content

Commit

Permalink
0.1.8.1 (#21)
Browse files Browse the repository at this point in the history
* Rollback module description
* Update docs
* Format requirements files
* Hotfix Release 0.1.8.1
* Updated pylint badge
  • Loading branch information
torrua authored Dec 25, 2023
1 parent c532f0b commit e70700f
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
![Code Climate maintainability](https://img.shields.io/codeclimate/maintainability-percentage/torrua/loglan_core?logo=Code%20Climate)
[![Pylint](https://github.com/torrua/loglan_core/actions/workflows/pylint.yml/badge.svg)](https://github.com/torrua/loglan_core/actions/workflows/pylint.yml)
[![Pytest](https://github.com/torrua/loglan_core/actions/workflows/pytest.yml/badge.svg)](https://github.com/torrua/loglan_core/actions/workflows/pytest.yml)
![pylint](https://img.shields.io/badge/pylint-9.96-yellow?logo=python&logoColor=white)
![pylint](https://img.shields.io/badge/pylint-9.94-yellow?logo=python&logoColor=white)
![PyPI - Downloads](https://img.shields.io/pypi/dm/loglan_core?color=yellow)
![PyPI - Version](https://img.shields.io/pypi/v/loglan-core?logo=PyPi&logoColor=%23FFFFFF)
![GitHub License](https://img.shields.io/github/license/torrua/loglan_core)
Expand Down
4 changes: 2 additions & 2 deletions docs/addons/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1" />
<meta name="generator" content="pdoc 0.10.0" />
<title>loglan_core.addons API documentation</title>
<meta name="description" content="This module contains an addons for basic Models" />
<meta name="description" content="This module contains an addons for BaseModels" />
<link rel="preload stylesheet" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/11.0.1/sanitize.min.css" integrity="sha256-PK9q560IAAa6WVRRh76LtCaI8pjTJ2z11v0miyNNjrs=" crossorigin>
<link rel="preload stylesheet" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/10up-sanitize.css/11.0.1/typography.min.css" integrity="sha256-7l/o7C8jubJiy74VsKTidCy1yBkRtiUGbVkYBylBqUg=" crossorigin>
<link rel="stylesheet preload" as="style" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/10.1.1/styles/github.min.css" crossorigin>
Expand All @@ -22,7 +22,7 @@
<h1 class="title">Module <code>loglan_core.addons</code></h1>
</header>
<section id="section-intro">
<p>This module contains an addons for basic Models</p>
<p>This module contains an addons for BaseModels</p>
</section>
<section>
<h2 class="section-title" id="header-submodules">Sub-modules</h2>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ <h2 class="section-title" id="header-submodules">Sub-modules</h2>
<dl>
<dt><code class="name"><a title="loglan_core.addons" href="addons/index.html">loglan_core.addons</a></code></dt>
<dd>
<div class="desc"><p>This module contains an addons for basic Models</p></div>
<div class="desc"><p>This module contains an addons for BaseModels</p></div>
</dd>
<dt><code class="name"><a title="loglan_core.author" href="author.html">loglan_core.author</a></code></dt>
<dd>
Expand Down
4 changes: 2 additions & 2 deletions docs/syllable.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h2 class="section-title" id="header-classes">Classes</h2>
<dl>
<dt id="loglan_core.syllable.BaseSyllable"><code class="flex name class">
<span>class <span class="ident">BaseSyllable</span></span>
<span>(</span><span>name, type, allowed=None)</span>
<span>(</span><span>name, type, allowed)</span>
</code></dt>
<dd>
<div class="desc"><p>Base Syllable's DB Model</p>
Expand All @@ -58,7 +58,7 @@ <h3>Instance variables</h3>
<dt id="loglan_core.syllable.BaseSyllable.allowed"><code class="name">var <span class="ident">allowed</span> : Union[sqlalchemy.orm.attributes.InstrumentedAttribute[~_T], ~_T]</code></dt>
<dd>
<div class="desc"><p><em>Is this syllable acceptable in grammar</em><br>
<strong>bool</strong> : nullable=True, unique=False</p></div>
<strong>bool</strong> : nullable=False, unique=False</p></div>
</dd>
<dt id="loglan_core.syllable.BaseSyllable.name"><code class="name">var <span class="ident">name</span> : Union[sqlalchemy.orm.attributes.InstrumentedAttribute[~_T], ~_T]</code></dt>
<dd>
Expand Down
3 changes: 3 additions & 0 deletions loglan_core/addons/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""
This module contains an addons for BaseModels
"""
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-r requirements.txt

pdoc3~=0.10.0
pdoc3~=0.10.0
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SQLAlchemy>=2.0.21
SQLAlchemy>=2.0.21
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from setuptools import setup

CURRENT_VERSION = "0.1.8"
CURRENT_VERSION = "0.1.8.1"


def read(filename): # pylint: disable=C0116
Expand Down

0 comments on commit e70700f

Please sign in to comment.