Skip to content

Commit

Permalink
Merge branch 'dev' into feat/roman_numerals
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl authored Jul 17, 2024
2 parents f9f7019 + 6a13ca5 commit 5a98c82
Show file tree
Hide file tree
Showing 90 changed files with 12,007 additions and 650 deletions.
20 changes: 12 additions & 8 deletions .github/workflows/build_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,31 +10,28 @@ on:
- 'lingua_franca/version.py'
- 'test/**'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'readme.md'
- 'lang_support.md'
- 'scripts/**'
workflow_dispatch:

jobs:
build_tests:
strategy:
max-parallel: 2
matrix:
python-version: [ 3.7, 3.8, 3.9, "3.10" ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Build Tools
run: |
python -m pip install build wheel
python -m pip install --upgrade build wheel setuptools pip
- name: Install System Dependencies
run: |
sudo apt-get update
Expand All @@ -48,4 +45,11 @@ jobs:
- name: Install package
run: |
pip install .
- uses: pypa/[email protected]
- uses: pypa/[email protected]
with:
# Ignore irrelevant Mercurial vulnerability
# Ignore `requests` and `urllib3` vulnerabilities as they are not used in this package
ignore-vulns: |
PYSEC-2023-228
GHSA-9wx4-h78v-vm56
GHSA-34jh-p97f-mpxf
47 changes: 47 additions & 0 deletions .github/workflows/gen_mkdown.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# This workflow will generate a distribution and upload it to PyPI

name: Generate Markdown
on:
push:
branches:
- dev
paths-ignore:
- 'lingua_franca/version.py'
- 'test/**'
- 'examples/**'
- '.github/**'
- '.gitignore'
- 'LICENSE'
- 'CHANGELOG.md'
- 'lang_support.md'
- 'MANIFEST.in'
- 'readme.md'
- 'scripts/**'
workflow_dispatch:

jobs:
gen_mkdown:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: dev
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt install python3-dev
sudo python -m pip install build wheel
sudo pip install .
- name: Generate Markdown
run: |
sudo python scripts/generate_mkdown.py
- name: Commit to dev
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: generate_markdown
branch: dev
1 change: 1 addition & 0 deletions .github/workflows/publish_alpha.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'readme.md'
- 'lang_support.md'
- 'scripts/**'
workflow_dispatch:

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
Changes in this Release
${{ steps.changelog.outputs.changelog }}
draft: false
prerelease: false
prerelease: true
- name: Build Distribution Packages
run: |
python setup.py bdist_wheel
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:
- 'LICENSE'
- 'CHANGELOG.md'
- 'MANIFEST.in'
- 'lang_support.md'
- 'readme.md'
- 'scripts/**'
push:
Expand Down
167 changes: 161 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,166 @@

## [Unreleased](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/HEAD)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6a2...HEAD)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a12...HEAD)

**Merged pull requests:**

- Update common\_data\_nl.py [\#74](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/74) ([timonvanhasselt](https://github.com/timonvanhasselt))

## [V0.4.8a12](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a12) (2024-06-18)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a11...V0.4.8a12)

**Closed issues:**

- Newest versions not on PyPi [\#71](https://github.com/OpenVoiceOS/ovos-lingua-franca/issues/71)

**Merged pull requests:**

- Update pip-audit to latest version [\#73](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/73) ([NeonDaniel](https://github.com/NeonDaniel))
- Resolve build test automation failures [\#72](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/72) ([NeonDaniel](https://github.com/NeonDaniel))
- Rebased UK Parse PR [\#56](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/56) ([NeonDaniel](https://github.com/NeonDaniel))

## [V0.4.8a11](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a11) (2024-05-12)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a10...V0.4.8a11)

## [V0.4.8a10](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a10) (2024-05-12)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a9...V0.4.8a10)

**Implemented enhancements:**

- feat/opm plugin [\#57](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/57) ([JarbasAl](https://github.com/JarbasAl))

## [V0.4.8a9](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a9) (2024-05-12)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a8...V0.4.8a9)

**Implemented enhancements:**

- feat/ovos\_defaults [\#68](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/68) ([JarbasAl](https://github.com/JarbasAl))

## [V0.4.8a8](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a8) (2024-05-12)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a7...V0.4.8a8)

**Merged pull requests:**

- feat: add basic English colors [\#70](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/70) ([builderjer](https://github.com/builderjer))

## [V0.4.8a7](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a7) (2023-09-13)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a6...V0.4.8a7)

**Implemented enhancements:**

- fix german time parser [\#65](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/65) ([emphasize](https://github.com/emphasize))

## [V0.4.8a6](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a6) (2023-09-07)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a5...V0.4.8a6)

**Merged pull requests:**

- Fix typo in `uk-ua` language code [\#62](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/62) ([NeonDaniel](https://github.com/NeonDaniel))

## [V0.4.8a5](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a5) (2023-08-21)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a4...V0.4.8a5)

**Implemented enhancements:**

- extend german normalizer [\#59](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/59) ([emphasize](https://github.com/emphasize))

## [V0.4.8a4](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a4) (2023-08-15)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a3...V0.4.8a4)

**Implemented enhancements:**

- move to quebra tokenizer [\#61](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/61) ([emphasize](https://github.com/emphasize))

## [V0.4.8a3](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a3) (2023-06-05)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a2...V0.4.8a3)

**Fixed bugs:**

- fix nice date utils [\#60](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/60) ([emphasize](https://github.com/emphasize))

## [V0.4.8a2](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a2) (2023-05-19)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.8a1...V0.4.8a2)

**Implemented enhancements:**

- german parse overhaul [\#54](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/54) ([emphasize](https://github.com/emphasize))

## [V0.4.8a1](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.8a1) (2023-04-07)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.7...V0.4.8a1)

**Merged pull requests:**

- Format uk [\#50](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/50) ([NeonMariia](https://github.com/NeonMariia))

## [V0.4.7](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.7) (2023-02-14)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.7a1...V0.4.7)

## [V0.4.7a1](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.7a1) (2023-02-14)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6...V0.4.7a1)

**Implemented enhancements:**

- feat/nice\_date utils [\#42](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/42) ([JarbasAl](https://github.com/JarbasAl))

## [V0.4.6](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.6) (2023-01-24)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6a7...V0.4.6)

**Merged pull requests:**

- Mark build releases as pre-releases to maintain the pattern of releases with new language support [\#53](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/53) ([NeonDaniel](https://github.com/NeonDaniel))

## [V0.4.6a7](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.6a7) (2023-01-19)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6a5...V0.4.6a7)

**Implemented enhancements:**

- Feat/color utils [\#45](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/45) ([JarbasAl](https://github.com/JarbasAl))

**Merged pull requests:**

- Remove dependency on pip and add obsoletes keyword. [\#52](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/52) ([gmsoft-tuxicoman](https://github.com/gmsoft-tuxicoman))

## [V0.4.6a5](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.6a5) (2022-12-27)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6a4...V0.4.6a5)

**Implemented enhancements:**

- feat/extract\_langcode\_pt/fr/de/nl/es/gl/eu/ca [\#49](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/49) ([JarbasAl](https://github.com/JarbasAl))

## [V0.4.6a4](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.6a4) (2022-12-27)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6a3...V0.4.6a4)

**Implemented enhancements:**

- feat/extract\_duration\_pt\_es [\#48](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/48) ([JarbasAl](https://github.com/JarbasAl))
- feat/ lang support markdown tables [\#46](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/46) ([JarbasAl](https://github.com/JarbasAl))

**Fixed bugs:**

- fix/markdown automation [\#47](https://github.com/OpenVoiceOS/ovos-lingua-franca/pull/47) ([JarbasAl](https://github.com/JarbasAl))

## [V0.4.6a3](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.6a3) (2022-11-27)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.6a2...V0.4.6a3)

**Fixed bugs:**

Expand Down Expand Up @@ -39,11 +198,7 @@

## [V0.4.5](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.5) (2022-04-16)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.5a3...V0.4.5)

## [V0.4.5a3](https://github.com/OpenVoiceOS/ovos-lingua-franca/tree/V0.4.5a3) (2022-04-16)

[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.5a2...V0.4.5a3)
[Full Changelog](https://github.com/OpenVoiceOS/ovos-lingua-franca/compare/V0.4.5a2...V0.4.5)

**Implemented enhancements:**

Expand Down
Loading

0 comments on commit 5a98c82

Please sign in to comment.