From e6279509aab5b96be198297b0283b321ad76b0a9 Mon Sep 17 00:00:00 2001 From: Orest Bida Date: Tue, 4 Feb 2025 16:50:37 +0100 Subject: [PATCH] build: bump version to 3.1.0 --- dist/cookieconsent.esm.js | 2 +- dist/cookieconsent.umd.js | 2 +- dist/core/cookieconsent-core.esm.js | 2 +- dist/core/cookieconsent-core.umd.js | 2 +- docs/essential/getting-started.md | 14 +++++++------- package.json | 2 +- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/dist/cookieconsent.esm.js b/dist/cookieconsent.esm.js index e8481427..15f60c66 100644 --- a/dist/cookieconsent.esm.js +++ b/dist/cookieconsent.esm.js @@ -1,5 +1,5 @@ /*! -* CookieConsent 3.0.1 +* CookieConsent 3.1.0 * https://github.com/orestbida/cookieconsent * Author Orest Bida * Released under the MIT License diff --git a/dist/cookieconsent.umd.js b/dist/cookieconsent.umd.js index 1e1cfb69..7f85a316 100644 --- a/dist/cookieconsent.umd.js +++ b/dist/cookieconsent.umd.js @@ -1,5 +1,5 @@ /*! -* CookieConsent 3.0.1 +* CookieConsent 3.1.0 * https://github.com/orestbida/cookieconsent * Author Orest Bida * Released under the MIT License diff --git a/dist/core/cookieconsent-core.esm.js b/dist/core/cookieconsent-core.esm.js index fab75f5f..a2c1c6f3 100644 --- a/dist/core/cookieconsent-core.esm.js +++ b/dist/core/cookieconsent-core.esm.js @@ -1,5 +1,5 @@ /*! -* CookieConsent 3.0.1 +* CookieConsent 3.1.0 * https://github.com/orestbida/cookieconsent * Author Orest Bida * Released under the MIT License diff --git a/dist/core/cookieconsent-core.umd.js b/dist/core/cookieconsent-core.umd.js index e0a1d534..f5e064b0 100644 --- a/dist/core/cookieconsent-core.umd.js +++ b/dist/core/cookieconsent-core.umd.js @@ -1,5 +1,5 @@ /*! -* CookieConsent 3.0.1 +* CookieConsent 3.1.0 * https://github.com/orestbida/cookieconsent * Author Orest Bida * Released under the MIT License diff --git a/docs/essential/getting-started.md b/docs/essential/getting-started.md index dfe72fda..5fcce217 100644 --- a/docs/essential/getting-started.md +++ b/docs/essential/getting-started.md @@ -12,15 +12,15 @@ You can download/import the plugin using one of the following methods: ::: code-group ```sh [npm] - npm i vanilla-cookieconsent@3.0.1 + npm i vanilla-cookieconsent@3.1.0 ``` ```sh [pnpm] - pnpm add vanilla-cookieconsent@3.0.1 + pnpm add vanilla-cookieconsent@3.1.0 ``` ```sh [yarn] - yarn add vanilla-cookieconsent@3.0.1 + yarn add vanilla-cookieconsent@3.1.0 ``` ::: @@ -31,12 +31,12 @@ You can download/import the plugin using one of the following methods: stylesheet: ``` - https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.css + https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.css ``` script: ``` - https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.umd.js + https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.umd.js ``` 3. Download the [latest release](https://github.com/orestbida/cookieconsent/releases?q=cookieconsent+v3) from GitHub and use the optimized files located in the `dist` folder. @@ -58,7 +58,7 @@ Add the stylesheet in the head section. Create a new file — `cookieconsent-con - + @@ -70,7 +70,7 @@ Add the stylesheet in the head section. Create a new file — `cookieconsent-con Import and [configure](#configuration) the plugin inside `cookieconsent-config.js`: ```javascript{1} -import 'https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.umd.js'; +import 'https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.umd.js'; CookieConsent.run({ // your config. goes here (required) diff --git a/package.json b/package.json index 8ee1311b..e8ecf959 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vanilla-cookieconsent", - "version": "3.0.1", + "version": "3.1.0", "description": "🍪 Simple cross-browser cookie-consent plugin written in vanilla js.", "main": "dist/cookieconsent.umd.js", "module": "dist/cookieconsent.esm.js",