Skip to content

Commit

Permalink
Released 1.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
jclo committed Feb 1, 2024
1 parent 10a06c6 commit 324aeba
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -4,7 +4,7 @@

* Updated the project with ES6Kadoo v2.1 (no Gulp, Github Actions),
* Replaced url http://localhost:8080 with http://127.0.0.1:8080,
* ...,
* Release.


### 1.0.2 (January 28, 2021)
Expand Down
6 changes: 3 additions & 3 deletions _dist/lib/picoq.js
@@ -1,5 +1,5 @@
/*! ****************************************************************************
* PicoQ v1.0.2
* PicoQ v1.0.3
*
* A tiny Javascript library to interact with the DOM.
* (you can download it from npm or github repositories)
Expand Down Expand Up @@ -195,7 +195,7 @@
const obj = Object.create(methods);
obj._library = {
name: 'PicoQ',
version: '1.0.2',
version: '1.0.3',
};

obj._root = cid !== 'body' ? document.querySelector(cid) : undefined;
Expand All @@ -213,7 +213,7 @@

// Attaches constants to PicoQ that provide name and version of the lib.
PicoQ.NAME = 'PicoQ';
PicoQ.VERSION = '1.0.2';
PicoQ.VERSION = '1.0.3';


// -- Private Static Methods -----------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions _dist/lib/picoq.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions _dist/lib/picoq.min.mjs

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions _dist/lib/picoq.mjs
@@ -1,5 +1,5 @@
/*! ****************************************************************************
* PicoQ v1.0.2
* PicoQ v1.0.3
*
* A tiny Javascript library to interact with the DOM.
* (you can download it from npm or github repositories)
Expand Down Expand Up @@ -196,7 +196,7 @@ const $__ES6GLOB = {};
const obj = Object.create(methods);
obj._library = {
name: 'PicoQ',
version: '1.0.2',
version: '1.0.3',
};

obj._root = cid !== 'body' ? document.querySelector(cid) : undefined;
Expand All @@ -214,7 +214,7 @@ const $__ES6GLOB = {};

// Attaches constants to PicoQ that provide name and version of the lib.
PicoQ.NAME = 'PicoQ';
PicoQ.VERSION = '1.0.2';
PicoQ.VERSION = '1.0.3';


// -- Private Static Methods -----------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions lib/picoq.js
Expand Up @@ -185,7 +185,7 @@
const obj = Object.create(methods);
obj._library = {
name: 'PicoQ',
version: '1.0.2',
version: '1.0.3',
};

obj._root = cid !== 'body' ? document.querySelector(cid) : undefined;
Expand All @@ -203,7 +203,7 @@

// Attaches constants to PicoQ that provide name and version of the lib.
PicoQ.NAME = 'PicoQ';
PicoQ.VERSION = '1.0.2';
PicoQ.VERSION = '1.0.3';


// -- Private Static Methods -----------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions lib/picoq.mjs
Expand Up @@ -186,7 +186,7 @@ const $__ES6GLOB = {};
const obj = Object.create(methods);
obj._library = {
name: 'PicoQ',
version: '1.0.2',
version: '1.0.3',
};

obj._root = cid !== 'body' ? document.querySelector(cid) : undefined;
Expand All @@ -204,7 +204,7 @@ const $__ES6GLOB = {};

// Attaches constants to PicoQ that provide name and version of the lib.
PicoQ.NAME = 'PicoQ';
PicoQ.VERSION = '1.0.2';
PicoQ.VERSION = '1.0.3';


// -- Private Static Methods -----------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "picoq",
"version": "1.0.2",
"version": "1.0.3",
"description": "A tiny Javascript library to interact with the DOM",
"main": "_dist/lib/picoq.js",
"minified": "_dist/lib/picoq.min.js",
Expand Down

0 comments on commit 324aeba

Please sign in to comment.