Skip to content

Commit

Permalink
Bump version numbers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Castle committed Oct 28, 2023
1 parent 74e667d commit ebaa3e9
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lib/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// ==UserLibrary==
// @name NH_base
// @description Base library usable any time.
// @version 17
// @version 18
// @license GPL-3.0-or-later; https://www.gnu.org/licenses/gpl-3.0-standalone.html
// @homepageURL https://github.com/nexushoratio/userscripts
// @supportURL https://github.com/nexushoratio/userscripts/issues
Expand All @@ -16,7 +16,7 @@ window.NexusHoratio.base = (function base() {
'use strict';

/** @type {number} - Bumped per release. */
const version = 17;
const version = 18;

/**
* @type {number} - Constant (to make eslint's `no-magic-numbers` setting
Expand Down
4 changes: 2 additions & 2 deletions lib/userscript.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// ==UserLibrary==
// @name NH_userscript
// @description Wrappers for dealing with variations in userscript managers.
// @version 1
// @version 2
// @license GPL-3.0-or-later; https://www.gnu.org/licenses/gpl-3.0-standalone.html
// @homepageURL https://github.com/nexushoratio/userscripts
// @supportURL https://github.com/nexushoratio/userscripts/issues
Expand All @@ -16,7 +16,7 @@ window.NexusHoratio.userscript = (function userscript() {
'use strict';

/** @type {number} - Bumped per release. */
const version = 1;
const version = 2;

/** Library specific exception. */
class UserscriptError extends Error {
Expand Down
2 changes: 1 addition & 1 deletion lib/userscript.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Wrappers for dealing with variations in userscript managers.

## Exported properties (as of version 0)
## Exported properties (as of version 2)
* version - Bumped per release.
* UserscriptError - Library specific exception.
* licenseData - License data extracted from the userscript header.
Expand Down
4 changes: 2 additions & 2 deletions lib/xunit.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// ==UserLibrary==
// @name NH_xunit
// @description xUnit style testing.
// @version 4
// @version 5
// @license GPL-3.0-or-later; https://www.gnu.org/licenses/gpl-3.0-standalone.html
// @homepageURL https://github.com/nexushoratio/userscripts
// @supportURL https://github.com/nexushoratio/userscripts/issues
Expand All @@ -16,7 +16,7 @@ window.NexusHoratio.xunit = (function xunit() {
'use strict';

/** @type {number} - Bumped per release. */
const version = 4;
const version = 5;

/**
* @type {object} - For testing support (to be replaced with `TestCase`).
Expand Down
2 changes: 1 addition & 1 deletion linkedin-tool.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// @namespace dalgoda@gmail.com
// @match https://www.linkedin.com/*
// @noframes
// @version 5.16
// @version 5.17
// @author Mike Castle
// @description Minor enhancements to LinkedIn. Mostly just hotkeys.
// @license GPL-3.0-or-later; https://www.gnu.org/licenses/gpl-3.0-standalone.html
Expand Down

0 comments on commit ebaa3e9

Please sign in to comment.