Skip to content

Commit e627950

Browse files
committed
build: bump version to 3.1.0
1 parent b43cea6 commit e627950

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

dist/cookieconsent.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cookieconsent.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/cookieconsent-core.esm.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/core/cookieconsent-core.umd.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/essential/getting-started.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ You can download/import the plugin using one of the following methods:
1212
::: code-group
1313

1414
```sh [npm]
15-
npm i vanilla-cookieconsent@3.0.1
15+
npm i vanilla-cookieconsent@3.1.0
1616
```
1717

1818
```sh [pnpm]
19-
pnpm add vanilla-cookieconsent@3.0.1
19+
pnpm add vanilla-cookieconsent@3.1.0
2020
```
2121

2222
```sh [yarn]
23-
yarn add vanilla-cookieconsent@3.0.1
23+
yarn add vanilla-cookieconsent@3.1.0
2424
```
2525

2626
:::
@@ -31,12 +31,12 @@ You can download/import the plugin using one of the following methods:
3131

3232
stylesheet:
3333
```
34-
https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.css
34+
https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.css
3535
```
3636

3737
script:
3838
```
39-
https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.umd.js
39+
https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.umd.js
4040
```
4141

4242
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
5858
<html>
5959
<head>
6060
<!-- head content -->
61-
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.css">
61+
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.css">
6262
</head>
6363
<body>
6464
<!-- body content -->
@@ -70,7 +70,7 @@ Add the stylesheet in the head section. Create a new file — `cookieconsent-con
7070
Import and [configure](#configuration) the plugin inside `cookieconsent-config.js`:
7171

7272
```javascript{1}
73-
import 'https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.0.1/dist/cookieconsent.umd.js';
73+
import 'https://cdn.jsdelivr.net/gh/orestbida/cookieconsent@3.1.0/dist/cookieconsent.umd.js';
7474
7575
CookieConsent.run({
7676
// your config. goes here (required)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vanilla-cookieconsent",
3-
"version": "3.0.1",
3+
"version": "3.1.0",
44
"description": "🍪 Simple cross-browser cookie-consent plugin written in vanilla js.",
55
"main": "dist/cookieconsent.umd.js",
66
"module": "dist/cookieconsent.esm.js",

0 commit comments

Comments
 (0)