@qtoggle/qui 1.18.0-b2 → 1.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/js/config.js CHANGED
@@ -64,7 +64,7 @@ const Config = {
64
64
  * @memberof qui.config
65
65
  * @type String
66
66
  */
67
- appCurrentVersion: '1.18.0b2',
67
+ appCurrentVersion: 'default-version',
68
68
 
69
69
  /**
70
70
  * QUI static base URL.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qtoggle/qui",
3
3
  "description": "A JavaScript UI library with batteries included.",
4
- "version": "1.18.0b2",
4
+ "version": "1.18.0",
5
5
  "author": {
6
6
  "name": "Calin Crisan",
7
7
  "email": "ccrisan@gmail.com"
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "qui-server"
3
- version = "1.18.0b2"
3
+ version = "1.18.0"
4
4
  description = "A fully fledged qToggle implementation written in Python"
5
5
  authors = [
6
6
  {name = "Calin Crisan", email = "ccrisan@gmail.com"},
@@ -6,8 +6,8 @@
6
6
 
7
7
  const MESSAGE_ACTIVATE = 'qui-activate'
8
8
  const DEF_APP_NAME = 'qui-app'
9
- const DEF_APP_VERSION = '1.18.0b2'
10
- const DEF_BUILD_HASH = 'unknown-hash'
9
+ const DEF_APP_VERSION = 'default-version'
10
+ const DEF_BUILD_HASH = 'default-hash'
11
11
  const DEF_CACHE_URL_REGEX = '.*\\.(svg|png|gif|jpg|jpe?g|ico|woff|html|json|js|css)$'
12
12
 
13
13