Skip to content

Commit d6bfed3

Browse files
stable version
1 parent 679c8de commit d6bfed3

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci-cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
run: BUILD_BRANCH=$(echo "${GITHUB_REF#refs/heads/}") npm run build
4747

4848
- name: Store assets
49-
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/cache_expiration' || github.ref == 'refs/heads/main') }}
49+
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/development' || github.ref == 'refs/heads/main') }}
5050
uses: actions/upload-artifact@v4
5151
with:
5252
name: assets
@@ -57,7 +57,7 @@ jobs:
5757
name: Upload assets
5858
runs-on: ubuntu-latest
5959
needs: build
60-
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/cache_expiration' }}
60+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/development' }}
6161
strategy:
6262
matrix:
6363
environment:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@splitsoftware/splitio-browserjs",
3-
"version": "1.1.1-rc.0",
3+
"version": "1.2.0",
44
"description": "Split SDK for JavaScript on Browser",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",

src/settings/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type SplitIO from '@splitsoftware/splitio-commons/types/splitio';
22
import { LogLevels, isLogLevelString } from '@splitsoftware/splitio-commons/src/logger/index';
33
import { CONSENT_GRANTED } from '@splitsoftware/splitio-commons/src/utils/constants';
44

5-
const packageVersion = '1.1.1-rc.0';
5+
const packageVersion = '1.2.0';
66

77
/**
88
* In browser, the default debug level, can be set via the `localStorage.splitio_debug` item.

0 commit comments

Comments
 (0)