Skip to content

Commit 51747a2

Browse files
committed
Updated HISTORY.md, installation.md, setup.cfg
1 parent dc2a649 commit 51747a2

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

HISTORY.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## 0.0.1 (2025-08-29): First release
2+
3+
* Initial commit
4+
* Added documentation
5+
* Added `FuzzyNumber`, `FuzzySet`, `TrapezoidalFuzzyNumber`
6+
* Enabled CI
7+
* Test suite
8+
* Packaging
9+
* Deployment on [readthedoc](https://app.readthedocs.org/)
10+
11+
## 0.0.2 (2025-08-29)
12+
13+
* Documentation
14+
* Fixed `installation.md`
15+
* CI
16+
* Fixed `setup.cfg`

docs/.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
modules.rst
2-
sphinx_uml.*.rst
3-
sphinx_uml.rst
2+
fuzzy_set.*.rst
3+
fuzzy_set.rst
44
_build

docs/installation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ sudo pip3 install sphinx_mdinclude --break-system-packages
2929
* Install [poetry](https://pypi.org/project/poetry/).
3030
* Install [graphviz](https://jupyter.org/install).
3131

32-
## Installing `sphinx-uml`
32+
## Installing `fuzzy-set`
3333
### From PIP
3434

3535
There are several ways to install the package:
@@ -52,7 +52,7 @@ pip install fuzzy-set --break-system-packages
5252

5353
```bash
5454
poetry run pip install
55-
pip install sphinx-uml
55+
pip install fuzzy-set
5656
```
5757

5858
* In a
@@ -63,7 +63,7 @@ the package is available only if this virtual environment is enabled.
6363
python3 -m venv env # Create your virtual environment
6464
source env/bin/activate # Activate the "env" virtual environment
6565
which python # Check you use the venv python interpret (i.e., not /usr/bin/python3)
66-
pip install sphinx-uml
66+
pip install fuzzy-set
6767
deactivate # Leave the "env" virtual environment
6868
```
6969

@@ -72,8 +72,8 @@ deactivate # Leave the "env" virtual environment
7272
* Clone the repository and install the package:
7373

7474
```bash
75-
git clone https://github.com/ibgp2/sphinx-uml.git
76-
cd sphinx_uml
75+
git clone https://github.com/Nokia-Bell-Labs/fuzzy-set.git
76+
cd fuzzy-set
7777
```
7878

7979
* Install the missing dependencies and build the wheel of the project in a `poetry` environment:
@@ -82,10 +82,10 @@ poetry install # Install the core dependencies. Pass --with docs,test,dev to in
8282
poetry build # Build the wheel (see dist/*whl)
8383
```
8484

85-
* The resulting `dist/sphinx_uml*whl` file can be installed using `pip` (see the previous section).
85+
* The resulting `dist/fuzzy-set*whl` file can be installed using `pip` (see the previous section).
8686

8787
_Example:_
8888

8989
```bash
90-
pip3 install dist/sphinx_uml*whl --break-system-packages
90+
pip3 install dist/fuzzy-set*whl --break-system-packages
9191
```

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ current_version = 0.0.1
33
commit = True
44
tag = True
55

6-
[bumpversion:file:src/sphinx_uml/__init__.py]
6+
[bumpversion:file:src/fuzzy_set/__init__.py]
77
search = __version__ = "{current_version}"
88
replace = __version__ = "{new_version}"
99

0 commit comments

Comments
 (0)