Skip to content

Commit

Permalink
fix: Merge branch 'next' into provider-error
Browse files Browse the repository at this point in the history
  • Loading branch information
kpears201 committed Nov 1, 2023
2 parents 9d21867 + ec374cd commit 5f38816
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 16 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# [1.0.0-next.1](https://github.com/rdkcentral/firebolt-apis/compare/v0.18.0-next.7...v1.0.0-next.1) (2023-11-01)


### Bug Fixes

* CI looking for legacy 0.x version ([923d02a](https://github.com/rdkcentral/firebolt-apis/commit/923d02ae96716a5272c5507e864f366012824642))
* Update schemas & 1.0.0 version! ([#200](https://github.com/rdkcentral/firebolt-apis/issues/200)) ([ea29f33](https://github.com/rdkcentral/firebolt-apis/commit/ea29f3323a22ffa36904bdc6cf6e76a31fa8cb76))


### BREAKING CHANGES

* This is not really a breaking change, but 1.0 release!!!

# [0.18.0-next.7](https://github.com/rdkcentral/firebolt-apis/compare/v0.18.0-next.6...v0.18.0-next.7) (2023-10-30)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ title: Firebolt APIs
# Firebolt APIs
Firebolt APIs are defined by [OpenRPC schemas](https://spec.open-rpc.org).

The schemas are used to generate SDK and Documentation artifacts.
The schemas are used to generate SDK and Documentation artifacts.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebolt-js/sdks",
"version": "0.18.0-next.7",
"version": "1.0.0-next.1",
"description": "The Firebolt JS SDK",
"type": "module",
"bin": {
Expand Down Expand Up @@ -45,7 +45,7 @@
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@firebolt-js/openrpc": "2.1.1",
"@firebolt-js/schemas": "2.0.0-next.1",
"@firebolt-js/schemas": "2.0.0",
"@saithodev/semantic-release-backmerge": "^3.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
Expand Down
2 changes: 1 addition & 1 deletion src/js/version-specification/apis.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ const run = async (version, parsedArgs) => {

return new Promise( async (resolve, reject) => {
let legacy = major-1
while (legacy>major-parsedArgs['legacy-versions']-1 && legacy>=0) {
while (legacy>major-parsedArgs['legacy-versions']-1 && legacy>0) {
const v = `${legacy}.x`

// create a temporary npm package and install the version of Firebolt we want to grab
Expand Down
2 changes: 1 addition & 1 deletion src/sdks/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebolt-js/sdk",
"version": "0.18.0-next.7",
"version": "1.0.0-next.1",
"description": "The Firebolt JS SDK",
"main": "./dist/lib/firebolt.mjs",
"types": "./dist/lib/firebolt.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/sdks/manage/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@firebolt-js/manage-sdk",
"version": "0.18.0-next.7",
"version": "1.0.0-next.1",
"description": "The Firebolt Manage JS SDK",
"main": "./dist/lib/firebolt-manage.mjs",
"types": "./dist/lib/firebolt-manage.d.ts",
Expand Down

0 comments on commit 5f38816

Please sign in to comment.