spyne 0.20.7 → 0.20.8

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.
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Spyne 0.20.7
2
+ * Spyne 0.20.8
3
3
  * https://spynejs.org
4
4
  *
5
5
  * @license
@@ -15,7 +15,7 @@
15
15
  */
16
16
 
17
17
  /*!
18
- * spynejs 0.20.7
18
+ * spynejs 0.20.8
19
19
  * https://spynejs.org
20
20
  * (c) 2017-present Frank Batista
21
21
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spyne",
3
- "version": "0.20.7",
3
+ "version": "0.20.8",
4
4
  "description": "Reactive Real-DOM Framework for Advanced Javascript applications",
5
5
  "sideEffects": true,
6
6
  "main": "./lib/spyne.esm.js",
@@ -44,8 +44,8 @@
44
44
  "JavaScript Framework",
45
45
  "Single-Page-Application Framework"
46
46
  ],
47
- "author": "Frank Batista",
48
- "license": "LGPL",
47
+ "license": "LGPL-3.0",
48
+ "author": "Frank Batista <frank@spynejs.com> (Relevant Context, Inc.)",
49
49
  "devDependencies": {
50
50
  "@rollup/plugin-commonjs": "^28.0.2",
51
51
  "@rollup/plugin-json": "^6.1.0",
@@ -5,7 +5,7 @@ import { SpyneAppProperties } from './utils/spyne-app-properties.js'
5
5
  import { sanitizeHTMLConfigure } from './utils/sanitize-html.js'
6
6
 
7
7
  const _channels = new ChannelsMap()
8
- const version = '0.20.7'
8
+ const version = '0.20.8'
9
9
 
10
10
  class SpyneApplication {
11
11
  /**
@@ -42,7 +42,7 @@ class SpyneApplication {
42
42
  init(config = {}, testMode = false) {
43
43
  // this.channels = new ChannelsMap();
44
44
  /*!
45
- * Spyne 0.20.7
45
+ * Spyne 0.20.8
46
46
  * https://spynejs.org
47
47
  *
48
48
  * @license
@@ -15,6 +15,6 @@ describe('package.json export import statement', () => {
15
15
 
16
16
  (isPublic ? describe : describe.skip)('license should be LGPL', () => {
17
17
  it('should have LGPL as license', () => {
18
- expect(pkg.license).to.equal('LGPL');
18
+ expect(pkg.license).to.equal('LGPL-3.0');
19
19
  });
20
20
  });