mirror of
https://codeberg.org/Reuh/feather.git
synced 2025-10-27 10:09:32 +00:00
docs: bump version to v1.0.0
This commit is contained in:
parent
5d92c32e41
commit
0c5860cd5d
3 changed files with 6 additions and 9 deletions
|
|
@ -96,12 +96,12 @@ Since, as the kids say, everything is a file, Feather can be easily integrated w
|
||||||
|
|
||||||
### Docker
|
### Docker
|
||||||
|
|
||||||
If use Docker or Podman, an image is available at `codeberg.org/reuh/feather:latest`.
|
If use Docker or Podman, an image is available at `codeberg.org/reuh/feather:1`.
|
||||||
|
|
||||||
For example, to start a new container with the Feather daemon running, using the `config.yml` (see [basic configuration](#basic-configuration)) in the current directory and exposing the feeds in the `reader` directory:
|
For example, to start a new container with the Feather daemon running, using the `config.yml` (see [basic configuration](#basic-configuration)) in the current directory and exposing the feeds in the `reader` directory:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
docker run -d -v ./config.toml:/feather/config.toml:ro -v ./reader:/feather/reader -v feather-data:/feather/data --name feather codeberg.org/reuh/feather:latest daemon
|
docker run -d -v ./config.toml:/feather/config.toml:ro -v ./reader:/feather/reader -v feather-data:/feather/data --name feather codeberg.org/reuh/feather:1 daemon
|
||||||
```
|
```
|
||||||
|
|
||||||
Instead of using a configuration file, you may also use environment variables; see [the default configuration file](src/feather/config.default.toml) for details.
|
Instead of using a configuration file, you may also use environment variables; see [the default configuration file](src/feather/config.default.toml) for details.
|
||||||
|
|
@ -120,7 +120,7 @@ Description=Feather container
|
||||||
|
|
||||||
[Container]
|
[Container]
|
||||||
ContainerName=feather
|
ContainerName=feather
|
||||||
Image=codeberg.org/reuh/feather:latest
|
Image=codeberg.org/reuh/feather:1
|
||||||
Exec=daemon
|
Exec=daemon
|
||||||
|
|
||||||
# Auto-update container
|
# Auto-update container
|
||||||
|
|
@ -215,5 +215,5 @@ While I mostly started this project for fun, it ended up actually quite usable,
|
||||||
|
|
||||||
- [x] Write documentation
|
- [x] Write documentation
|
||||||
- [ ] Re-read
|
- [ ] Re-read
|
||||||
- [ ] Tag v1.0 in git & container
|
- [x] Tag v1.0 in git & container
|
||||||
- [ ] Publish
|
- [ ] Publish
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[project]
|
[project]
|
||||||
name = "feather"
|
name = "feather"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
authors = [ { name = 'Étienne "Reuh" Fildadut' } ]
|
authors = [ { name = 'Étienne "Reuh" Fildadut' } ]
|
||||||
description = "file-based RSS reader client"
|
description = "file-based RSS reader client"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
@ -8,7 +8,6 @@ requires-python = ">=3.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"google-reader>=0.0.3",
|
"google-reader>=0.0.3",
|
||||||
"jinja2>=3.1.6",
|
"jinja2>=3.1.6",
|
||||||
"requests>=2.32.5",
|
|
||||||
"ttrss-python>=0.5",
|
"ttrss-python>=0.5",
|
||||||
"tzdata>=2025.2",
|
"tzdata>=2025.2",
|
||||||
"watchfiles>=1.1.0",
|
"watchfiles>=1.1.0",
|
||||||
|
|
|
||||||
4
uv.lock
generated
4
uv.lock
generated
|
|
@ -69,12 +69,11 @@ wheels = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "feather"
|
name = "feather"
|
||||||
version = "0.1.0"
|
version = "1.0.0"
|
||||||
source = { editable = "." }
|
source = { editable = "." }
|
||||||
dependencies = [
|
dependencies = [
|
||||||
{ name = "google-reader" },
|
{ name = "google-reader" },
|
||||||
{ name = "jinja2" },
|
{ name = "jinja2" },
|
||||||
{ name = "requests" },
|
|
||||||
{ name = "ttrss-python" },
|
{ name = "ttrss-python" },
|
||||||
{ name = "tzdata" },
|
{ name = "tzdata" },
|
||||||
{ name = "watchfiles" },
|
{ name = "watchfiles" },
|
||||||
|
|
@ -84,7 +83,6 @@ dependencies = [
|
||||||
requires-dist = [
|
requires-dist = [
|
||||||
{ name = "google-reader", specifier = ">=0.0.3" },
|
{ name = "google-reader", specifier = ">=0.0.3" },
|
||||||
{ name = "jinja2", specifier = ">=3.1.6" },
|
{ name = "jinja2", specifier = ">=3.1.6" },
|
||||||
{ name = "requests", specifier = ">=2.32.5" },
|
|
||||||
{ name = "ttrss-python", specifier = ">=0.5" },
|
{ name = "ttrss-python", specifier = ">=0.5" },
|
||||||
{ name = "tzdata", specifier = ">=2025.2" },
|
{ name = "tzdata", specifier = ">=2025.2" },
|
||||||
{ name = "watchfiles", specifier = ">=1.1.0" },
|
{ name = "watchfiles", specifier = ">=1.1.0" },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue