diff --git a/CHANGELOG.md b/CHANGELOG.md index 52b615a..587a58f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### Version 1.0.2 (13th December 2023) + +#### Fixed +- Fixed issue with wrong banner position among other sibling elements when attached to a custom `bannerParent`. +- Fixed banner styles to avoid unintentional override by client styles. + +--- + ### Version 1.0.1 (5th December 2023) #### Fixed diff --git a/README.md b/README.md index fdb2282..d68ccef 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ To load Smart Banner SDK through CDN paste the follo ``` -When loading the sdk through CDN we suggest using minified version. You can target specific version like `https://cdn.adjust.com/adjust-smart-banner-1.0.1.min.js`, or you can target latest version `https://cdn.adjust.com/adjust-smart-banner-latest.min.js` if you want automatic updates without need to change the target file. The sdk files are cached so they are served as fast as possible, and the cache is refreshed every half an hour. If you want updates immediately make sure to target specific version. +When loading the sdk through CDN we suggest using minified version. You can target specific version like `https://cdn.adjust.com/adjust-smart-banner-1.0.2.min.js`, or you can target latest version `https://cdn.adjust.com/adjust-smart-banner-latest.min.js` if you want automatic updates without need to change the target file. The sdk files are cached so they are served as fast as possible, and the cache is refreshed every half an hour. If you want updates immediately make sure to target specific version. ## Initialization diff --git a/demo/package.json b/demo/package.json index 5c9150e..6111c16 100644 --- a/demo/package.json +++ b/demo/package.json @@ -10,7 +10,7 @@ "test": "echo \"Error: no test specified\" && exit 1" }, "dependencies": { - "@adjustcom/smart-banner-sdk": "^1.0.1", + "@adjustcom/smart-banner-sdk": "^1.0.2", "lorem-ipsum": "^2.0.8" }, "author": "Adjust GmbH", diff --git a/package-lock.json b/package-lock.json index 4e25589..a48d80a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@adjustcom/smart-banner-sdk-project", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@adjustcom/smart-banner-sdk-project", - "version": "1.0.1", + "version": "1.0.2", "license": "MIT", "workspaces": [ "./demo/", @@ -43,7 +43,7 @@ "version": "0.0.1", "license": "MIT", "dependencies": { - "@adjustcom/smart-banner-sdk": "^1.0.1", + "@adjustcom/smart-banner-sdk": "^1.0.2", "lorem-ipsum": "^2.0.8" }, "devDependencies": { @@ -10914,7 +10914,7 @@ }, "sdk": { "name": "@adjustcom/smart-banner-sdk", - "version": "1.0.1", + "version": "1.0.2", "license": "MIT", "devDependencies": { "@microsoft/api-extractor": "^7.38.0", diff --git a/package.json b/package.json index ed34ae2..9e69f75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@adjustcom/smart-banner-sdk-project", - "version": "1.0.1", + "version": "1.0.2", "description": "Adjust Smart Banner SDK", "scripts": { "build": "npm run build --workspace=layout && npm run build --workspace=sdk && npm run build:snippet && npm run copy", diff --git a/sdk/package.json b/sdk/package.json index 0f2d75f..1af3f02 100644 --- a/sdk/package.json +++ b/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@adjustcom/smart-banner-sdk", - "version": "1.0.1", + "version": "1.0.2", "description": "Adjust Smart Banner SDK", "scripts": { "build:sdk": "webpack --config ./webpack.config.js",