Skip to content

Commit

Permalink
chore: add versions auto update
Browse files Browse the repository at this point in the history
  • Loading branch information
Serhii Khalymon authored and eirenik0 committed Jul 20, 2024
1 parent ca842b9 commit 3e46734
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 7 deletions.
25 changes: 20 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,32 @@ Gst Client changelog
All user visible changes to this project will be documented in this file. This project uses [Semantic Versioning 2.0.0].


## [Unreleased]
[Unreleased]: /../../tree/Unreleased

### Added
<!-- next-header -->

<!-- next-url -->



## [Unreleased] - ReleaseDate

[Unreleased]: /../../tree/HEAD



## [0.1.2] - 2022-08-31

[0.1.2]: /../../tree/v0.1.2

### Implemented

- Supported the [GStD HTTP API] spec;
- Documentation for base use case.





[Semantic Versioning 2.0.0]: https://semver.org
[GStremaer]: https://ffmpeg.org

[GStremaer]: https://gstreamer.freedesktop.org/
[GStD HTTP API]: https://developer.ridgerun.com/wiki/index.php/GStreamer_Daemon_-_HTTP_API
13 changes: 12 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,20 @@ repository = "https://github.com/InnovateAndBuild/gst-client"
documentation = "https://docs.rs/gst-client"
keywords = ["gstreamer", "gstd", "API", "client"]
categories = ["web-programming::http-client"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[package.metadata.release]
allow-branch = ["master"]
dev-version = false
pre-release-replacements = [
{file="README.md", search="[{{prev_version}}]+", replace="{{version}}"} ,
{file="CHANGELOG.md", search="Unreleased", replace="{{version}}", min=1},
{file="CHANGELOG.md", search="...HEAD", replace="...{{tag_name}}", exactly=1},
{file="CHANGELOG.md", search="ReleaseDate", replace="{{date}}", min=1},
{file="CHANGELOG.md", search="<!-- next-header -->", replace="<!-- next-header -->\n## [Unreleased] - ReleaseDate\n", exactly=1},
{file="CHANGELOG.md", search="<!-- next-url -->", replace="<!-- next-url -->\n[Unreleased]: /../../tree/HEAD", exactly=1},
]

[dependencies]
mime = "0.3"
mime_serde_shim = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gst Client
==========

[![gst-client](https://img.shields.io/badge/v0.1.1-blue) v0.1.1](https://github.com/ALLATRA-IT/gst-client/tree/master) ([changelog](https://github.com/ALLATRA-IT/gst-client/blob/master/CHANGELOG.md))
[![gst-client](https://img.shields.io/badge/v0.1.2-blue) v0.1.2](https://github.com/InnovateAndBuild/gst-client/tree/master) ([changelog](https://github.com/InnovateAndBuild/gst-client/blob/master/CHANGELOG.md))


The [GStreamer Daemon][1] [Rust] Client or [gst-client][2] is a [Rust] package that provides bindings for the main functionalities of the [GStreamer Daemon].
Expand Down

0 comments on commit 3e46734

Please sign in to comment.