Skip to content

Commit 28bcf99

Browse files
committed
publish 0.0.1 and add relevant documentation regarding it
1 parent b392284 commit 28bcf99

3 files changed

Lines changed: 46 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Publish
2+
on:
3+
push:
4+
branches: [master]
5+
6+
jobs:
7+
publish:
8+
runs-on: ubuntu-latest
9+
permissions:
10+
contents: read
11+
id-token: write
12+
steps:
13+
- uses: actions/checkout@v6
14+
- name: Publish package
15+
run: npx jsr publish

deno.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "flection",
3-
"version": "0.1.0",
2+
"name": "@voldemortas/flection",
3+
"version": "0.0.1",
44
"exports": "./src/index.ts",
55
"tasks": {
66
"dev": "deno test --watch"

readme.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# flection
22

3+
[![Coverage Status](https://coveralls.io/repos/github/Voldemortas/flection/badge.svg)](https://coveralls.io/github/Voldemortas/flection)
4+
5+
---
6+
37
My custom tool to make flectionally derived forms (and not only) with respect to
48
stress mobility (compare nesakiaũ vs nèlakiau)! The tool doesn't use any
59
external tool or library and derives everything by itself. You as the end user,
@@ -10,6 +14,31 @@ If you've found any mistakes/errors, make sure to
1014
[open an issue](https://github.com/Voldemortas/flection/issues). A working web
1115
endpoint shall be made public in the near future as well.
1216

17+
---
18+
19+
## Release notes
20+
21+
There is version 0.0.1 release which features Verb conjugation that includes
22+
inflection of the following:
23+
24+
- infinitive
25+
- all 4 indicative mood tenses
26+
- conditional and imperative moods (without permissive!)
27+
- all 4 active adjectival participles (with full declinations)
28+
- all 3 passive adjectival participles (with full declinations)
29+
- all 4 padalyvis (-ant, -us)
30+
- pusdalyvis (-dam-)
31+
- -imas deverbial noun
32+
- būdinys (-te)
33+
34+
all of them can be inflected for reflexivness, carry prefixes; the adjectival
35+
participles can also be pronominal.
36+
37+
> [!NOTE]\
38+
> As this is version 0.0.1 nothing is yet set in stone and things may change!
39+
40+
---
41+
1342
## Installation
1443

1544
To add it to your dependencies use one of the following

0 commit comments

Comments
 (0)