Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.1.1 #68

Merged
merged 4 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '15.x'
node-version: '20.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '15.x'
node-version: '20.x'
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm run check-versions
Expand Down
4,104 changes: 2,271 additions & 1,833 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/bbcat-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-bbcat-js",
"version": "0.1.0",
"version": "0.1.1",
"description": "WebAudio DASH player components for audio orchestration framework",
"main": "dist/bbcat.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion packages/cloud-sync-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-cloud-sync-client",
"version": "0.1.0",
"version": "0.1.1",
"description": "Library implementing client code for cloud synchronisation",
"main": "dist/browser/CloudSyncKit.js",
"files": [
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-core",
"version": "0.1.0",
"version": "0.1.1",
"description": "Components for synchronised object based audio experiences.",
"main": "dist/light.js",
"exports": {
Expand All @@ -17,8 +17,8 @@
"dist"
],
"dependencies": {
"@bbc/audio-orchestration-bbcat-js": "^0.1.0",
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.0",
"@bbc/audio-orchestration-bbcat-js": "^0.1.1",
"@bbc/audio-orchestration-cloud-sync-client": "^0.1.1",
"dvbcss-clocks": "^0.0.4",
"dvbcss-protocols": "^0.0.4",
"events": "^3.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/audio-orchestration-template",
"version": "0.1.0",
"version": "0.1.1",
"description": "A user interface template showing how to integrate the bbcat-orchestration toolkit for orchestrated personal audio devices with React components.",
"repository": {
"type": "git",
Expand All @@ -12,7 +12,7 @@
"dist"
],
"dependencies": {
"@bbc/audio-orchestration-core": "^0.1.0",
"@bbc/audio-orchestration-core": "^0.1.1",
"@hot-loader/react-dom": "^16.11.0",
"bowser": "^2.9.0",
"classnames": "^2.2.6",
Expand Down
Loading