Skip to content

Commit e878b2e

Browse files
committed
bindings: bump package versions for the new playback features
Minor-version bump signalling the added queue-insertion, resume, m3u8 and HTTP/ICY surface (additive, non-breaking): - python, typescript, ruby, elixir, kotlin: 0.1.2 → 0.2.0 - clojure: 0.1.1 → 0.2.0 (default; example commands updated too) - gleam: 1.0.1 → 1.1.0 - python uv.lock self-entry updated to match Go and Swift carry no in-repo manifest version — they release via git tags.
1 parent 235d7d6 commit e878b2e

8 files changed

Lines changed: 10 additions & 10 deletions

File tree

bindings/clojure/build.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@
1919
2020
Usage:
2121
clojure -T:build jar
22-
VERSION=0.1.1 clojure -T:build install # -> local ~/.m2
23-
VERSION=0.1.1 CLOJARS_USERNAME=<user> CLOJARS_PASSWORD=<token> \\
22+
VERSION=0.2.0 clojure -T:build install # -> local ~/.m2
23+
VERSION=0.2.0 CLOJARS_USERNAME=<user> CLOJARS_PASSWORD=<token> \\
2424
clojure -T:build release # stamp+tag+deploy+cljdoc
2525
Lower-level: `stamp-cljdoc`, `deploy` (Clojars only), `request-cljdoc`."
2626
(:require [clojure.tools.build.api :as b]
2727
[clojure.java.io :as io]
2828
[deps-deploy.deps-deploy :as dd]))
2929

3030
(def lib 'io.github.tsirysndr/rockbox-clj-ffi)
31-
(def version (or (System/getenv "VERSION") "0.1.1"))
31+
(def version (or (System/getenv "VERSION") "0.2.0"))
3232
(def tag (str "clojure-ffi-v" version))
3333
(def class-dir "target/classes")
3434
(def basis (delay (b/create-basis {:project "deps.edn"})))

bindings/elixir/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ defmodule RockboxFfi.MixProject do
44
def project do
55
[
66
app: :rockbox_ex_ffi,
7-
version: "0.1.2",
7+
version: "0.2.0",
88
elixir: "~> 1.15",
99
# elixir_make runs the Makefile (builds priv/rockbox_ffi_nif.so) before
1010
# compiling Elixir; the shared NIF loader in src/ is compiled by Mix.

bindings/gleam/gleam.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "rockbox_ffi"
2-
version = "1.0.1"
2+
version = "1.1.0"
33
target = "erlang"
44
licences = ["GPL-2.0-or-later"]
55
description = "Gleam bindings for the Rockbox DSP / metadata / playback engine"

bindings/kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
}
99

1010
group = "io.github.tsirysndr"
11-
version = providers.gradleProperty("libVersion").getOrElse("0.1.2")
11+
version = providers.gradleProperty("libVersion").getOrElse("0.2.0")
1212

1313
repositories { mavenCentral() }
1414

bindings/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "rockbox-ffi"
3-
version = "0.1.2"
3+
version = "0.2.0"
44
description = "Python bindings for the Rockbox DSP / metadata / playback engine"
55
readme = "README.md"
66
requires-python = ">=3.9"

bindings/python/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RockboxFFI
4-
VERSION = "0.1.2"
4+
VERSION = "0.2.0"
55
end

bindings/typescript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rockbox-ffi",
3-
"version": "0.1.2",
3+
"version": "0.2.0",
44
"description": "TypeScript bindings (Bun + Deno + Node.js FFI) for the Rockbox DSP / metadata / playback engine",
55
"license": "GPL-2.0-or-later",
66
"type": "module",

0 commit comments

Comments
 (0)