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
|
||||
|
||||
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:
|
||||
|
||||
```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.
|
||||
|
|
@ -120,7 +120,7 @@ Description=Feather container
|
|||
|
||||
[Container]
|
||||
ContainerName=feather
|
||||
Image=codeberg.org/reuh/feather:latest
|
||||
Image=codeberg.org/reuh/feather:1
|
||||
Exec=daemon
|
||||
|
||||
# Auto-update container
|
||||
|
|
@ -215,5 +215,5 @@ While I mostly started this project for fun, it ended up actually quite usable,
|
|||
|
||||
- [x] Write documentation
|
||||
- [ ] Re-read
|
||||
- [ ] Tag v1.0 in git & container
|
||||
- [x] Tag v1.0 in git & container
|
||||
- [ ] Publish
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "feather"
|
||||
version = "0.1.0"
|
||||
version = "1.0.0"
|
||||
authors = [ { name = 'Étienne "Reuh" Fildadut' } ]
|
||||
description = "file-based RSS reader client"
|
||||
readme = "README.md"
|
||||
|
|
@ -8,7 +8,6 @@ requires-python = ">=3.12"
|
|||
dependencies = [
|
||||
"google-reader>=0.0.3",
|
||||
"jinja2>=3.1.6",
|
||||
"requests>=2.32.5",
|
||||
"ttrss-python>=0.5",
|
||||
"tzdata>=2025.2",
|
||||
"watchfiles>=1.1.0",
|
||||
|
|
|
|||
4
uv.lock
generated
4
uv.lock
generated
|
|
@ -69,12 +69,11 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "feather"
|
||||
version = "0.1.0"
|
||||
version = "1.0.0"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "google-reader" },
|
||||
{ name = "jinja2" },
|
||||
{ name = "requests" },
|
||||
{ name = "ttrss-python" },
|
||||
{ name = "tzdata" },
|
||||
{ name = "watchfiles" },
|
||||
|
|
@ -84,7 +83,6 @@ dependencies = [
|
|||
requires-dist = [
|
||||
{ name = "google-reader", specifier = ">=0.0.3" },
|
||||
{ name = "jinja2", specifier = ">=3.1.6" },
|
||||
{ name = "requests", specifier = ">=2.32.5" },
|
||||
{ name = "ttrss-python", specifier = ">=0.5" },
|
||||
{ name = "tzdata", specifier = ">=2025.2" },
|
||||
{ name = "watchfiles", specifier = ">=1.1.0" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue