Skip to content

Commit

Permalink
Update version to 1.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
clauspruefer committed Nov 13, 2024
1 parent e1f71c8 commit 05ee90a
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Changelog

## Version 1.0rc1

- Correct README.md (package name and version)
- Correct python package Metadata
- Update documentation (wording, class reference)

## Version 0.55beta

- Add CHANGELOG.md
- Fix broken pytest
- Improve documentation

## Version 0.6rc1

- Correct README.md (package name and version)
- Correct python package Metadata
- Update documentation (wording, class reference)

10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Documentation including examples can be found at either [./doc](./doc) or [https
# pip install xmlmicroparser
```

Or download the current Relase Zip / Tarball @ [Release 0.6rc1](https://github.com/clauspruefer/python-xml-microparser/releases/tag/0.6rc1) and continue with section **2.2**.
Or download the current Relase Zip / Tarball @ [Release 1.0rc1](https://github.com/clauspruefer/python-xml-microparser/releases/tag/1.0rc1) and continue with section **2.2**.

>[!NOTE]
> Since Python 3.3 (PEP 405) Virtual Environments are proposed.
Expand All @@ -34,15 +34,15 @@ You need Python3 setuptools to build the package manually. Pytest / PEP-8 packag
Do this for a pip system where `--break-system-packages` is not needed.

```bash
# sudo pip3 install ./xmlmicroparser-0.6rc1.tar.gz
# sudo pip3 install ./xmlmicroparser-1.0rc1.tar.gz
```

## 2.3. Restrictive PIP Install

Do this for a pip system where `--break-system-packages` is needed.

```bash
# sudo pip3 install ./xmlmicroparser-0.6rc1.tar.gz --break-system-packages
# sudo pip3 install ./xmlmicroparser-1.0rc1.tar.gz --break-system-packages
```

## 3. Build Manually
Expand All @@ -57,7 +57,7 @@ Clone git repository and change dir.
## 3.1. Build As Non-Root-User

Build python-package with setup-tools (as non root user). This will generate the installabe tarball
into `./dist/xmlmicroparser-0.6rc1.tar.gz`.
into `./dist/xmlmicroparser-1.0rc1.tar.gz`.

```bash
# python3 setup.py sdist
Expand All @@ -66,7 +66,7 @@ into `./dist/xmlmicroparser-0.6rc1.tar.gz`.
## 3.2. Install As Root-User

```bash
# sudo pip3 install ./dist/xmlmicroparser-0.6rc1.tar.gz --break-system-packages
# sudo pip3 install ./dist/xmlmicroparser-1.0rc1.tar.gz --break-system-packages
```

## 4. Run Tests / Pytest
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = u'0.6rc1'
version = u'1.0rc1'
# The full version, including alpha/beta/rc tags.
release = u'0.6rc1'
release = u'1.0rc1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "xmlmicroparser"
version = "0.6rc1"
version = "1.0rc1"
authors = [
{ name="Claus Prüfer", email="[email protected]" },
]
Expand Down

0 comments on commit 05ee90a

Please sign in to comment.