chore(release): release v0.27.0 #131
5 changed files with 22 additions and 5 deletions
|
|
@ -1,3 +1,3 @@
|
|||
{
|
||||
".": "0.26.1"
|
||||
".": "0.27.0"
|
||||
}
|
||||
|
|
|
|||
17
CHANGELOG.md
17
CHANGELOG.md
|
|
@ -1,5 +1,22 @@
|
|||
# Changelog
|
||||
|
||||
## [0.27.0](https://github.com/webstreamr/webstreamr/compare/v0.26.1...v0.27.0) (2025-06-10)
|
||||
|
||||
|
||||
### Miscellaneous Chores
|
||||
|
||||
* **extractor:** add DoodStream height guessing based on title ([b940df5](https://github.com/webstreamr/webstreamr/commit/b940df5bc095ed9c5537271321abfcd360909531))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **extractor:** implement KinoGer extractor ([262abde](https://github.com/webstreamr/webstreamr/commit/262abde2fcb5a13734d6338be70a9bbf9e988c92))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **extractor:** prefer using extractor title ([041c04e](https://github.com/webstreamr/webstreamr/commit/041c04e327baca327a1de84ecfc38e2f602e8c07))
|
||||
|
||||
## [0.26.1](https://github.com/webstreamr/webstreamr/compare/v0.26.0...v0.26.1) (2025-06-10)
|
||||
|
||||
|
||||
|
|
|
|||
4
package-lock.json
generated
4
package-lock.json
generated
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"version": "0.26.1",
|
||||
"version": "0.27.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "webstreamr",
|
||||
"version": "0.26.1",
|
||||
"version": "0.27.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@isaacs/ttlcache": "^1.4.1",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "webstreamr",
|
||||
"description": "Provides HTTP URLs from streaming websites.",
|
||||
"version": "0.26.1",
|
||||
"version": "0.27.0",
|
||||
"type": "commonjs",
|
||||
"scripts": {
|
||||
"analyse": "tsc --noEmit --project ./tsconfig.dev.json",
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ const typedEntries = <T extends object>(obj: T): [keyof T, T[keyof T]][] => (Obj
|
|||
export const buildManifest = (handlers: Handler[], config: Config): ManifestWithConfig => {
|
||||
const manifest: ManifestWithConfig = {
|
||||
id: envGetAppId(),
|
||||
version: '0.26.1', // x-release-please-version
|
||||
version: '0.27.0', // x-release-please-version
|
||||
name: envGetAppName(),
|
||||
description: 'Provides HTTP URLs from streaming websites.',
|
||||
resources: [
|
||||
|
|
|
|||
Loading…
Reference in a new issue