diff --git a/.github/workflows/bump.yaml b/.github/workflows/bump.yaml deleted file mode 100644 index aad9aa947..000000000 --- a/.github/workflows/bump.yaml +++ /dev/null @@ -1,18 +0,0 @@ -name: Bump version -on: - workflow_dispatch: - inputs: - packages: - description: "Packages to bump" - type: string - required: true -jobs: - bump: - runs-on: ubuntu-latest - permissions: - contents: write - steps: - - uses: actions/checkout@v3 - - uses: nbsp/ilo@v1 - with: - packages: ${{ github.event.inputs.packages }} diff --git a/.nanpa/.keep b/.nanpa/.keep deleted file mode 100644 index 2b6afe05c..000000000 --- a/.nanpa/.keep +++ /dev/null @@ -1,4 +0,0 @@ -Add changeset files in this directory. - -See nanpa documentation for more info: -https://github.com/nbsp/nanpa/blob/trunk/doc/nanpa-changeset.5.scd \ No newline at end of file diff --git a/.nanpa/background-blur.kdl b/.nanpa/background-blur.kdl deleted file mode 100644 index ca3ab10a5..000000000 --- a/.nanpa/background-blur.kdl +++ /dev/null @@ -1 +0,0 @@ -minor type="added" "Added BackgroundBlurVideoProcessor" diff --git a/.nanpa/new-mic-mute-mode.kdl b/.nanpa/new-mic-mute-mode.kdl deleted file mode 100644 index 47a4a2cb4..000000000 --- a/.nanpa/new-mic-mute-mode.kdl +++ /dev/null @@ -1 +0,0 @@ -patch type="added" "New mic mute mode" diff --git a/.nanpa/sendable-callbacks.kdl b/.nanpa/sendable-callbacks.kdl deleted file mode 100644 index f31575612..000000000 --- a/.nanpa/sendable-callbacks.kdl +++ /dev/null @@ -1 +0,0 @@ -patch type="fixed" "Sendable requirement for internal callbacks" diff --git a/.nanpa/update-protobuf.kdl b/.nanpa/update-protobuf.kdl deleted file mode 100644 index 14aef5958..000000000 --- a/.nanpa/update-protobuf.kdl +++ /dev/null @@ -1 +0,0 @@ -patch type="changed" "Update to protobuf v1.37.0" diff --git a/.nanparc b/.nanparc deleted file mode 100644 index 896126b82..000000000 --- a/.nanparc +++ /dev/null @@ -1,3 +0,0 @@ -version 2.5.1 -name client-sdk-swift -custom ./scripts/replace_version.sh diff --git a/scripts/replace_version.sh b/scripts/replace_version.sh deleted file mode 100755 index 2a2e2bdfa..000000000 --- a/scripts/replace_version.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# This script is invoked by nanpa with the new version set in VERSION. -# ed is used instead of sed to make this script POSIX compliant (run on Mac or Linux runner). - -if [ -z "${VERSION}" ]; then - echo "Error: VERSION is not set. Exiting..." - exit 1 -fi - -replace() { - ed -s "$1" >/dev/null - if [ $? -ne 0 ]; then - echo "Error: unable to replace version in $1" >&2 - exit 1 - fi -} - -# 1. Podspec version & tag -# ----------------------------------------- -replace ./LiveKitClient.podspec <