Skip to content

Commit

Permalink
Version bump, updating copyright date in LICENSE & README.md, buildin…
Browse files Browse the repository at this point in the history
…g outputs
  • Loading branch information
avoidwork committed Apr 16, 2024
1 parent 3e62153 commit d14a007
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2023, Jason Mulligan
Copyright (c) 2024, Jason Mulligan
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -252,5 +252,5 @@ cache.values(['abc', 'def']);
```

## License
Copyright (c) 2023 Jason Mulligan
Copyright (c) 2024 Jason Mulligan
Licensed under the BSD-3 license.
4 changes: 2 additions & 2 deletions dist/tiny-lru.cjs
@@ -1,9 +1,9 @@
/**
* tiny-lru
*
* @copyright 2023 Jason Mulligan <jason.mulligan@avoidwork.com>
* @copyright 2024 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.2.5
* @version 11.2.6
*/
'use strict';

Expand Down
4 changes: 2 additions & 2 deletions dist/tiny-lru.js
@@ -1,9 +1,9 @@
/**
* tiny-lru
*
* @copyright 2023 Jason Mulligan <jason.mulligan@avoidwork.com>
* @copyright 2024 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.2.5
* @version 11.2.6
*/
class LRU {
constructor (max = 0, ttl = 0, resetTtl = false) {
Expand Down
4 changes: 2 additions & 2 deletions dist/tiny-lru.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/tiny-lru.umd.js
@@ -1,9 +1,9 @@
/**
* tiny-lru
*
* @copyright 2023 Jason Mulligan <jason.mulligan@avoidwork.com>
* @copyright 2024 Jason Mulligan <jason.mulligan@avoidwork.com>
* @license BSD-3-Clause
* @version 11.2.5
* @version 11.2.6
*/
(function(g,f){typeof exports==='object'&&typeof module!=='undefined'?f(exports):typeof define==='function'&&define.amd?define(['exports'],f):(g=typeof globalThis!=='undefined'?globalThis:g||self,f(g.lru={}));})(this,(function(exports){'use strict';class LRU {
constructor (max = 0, ttl = 0, resetTtl = false) {
Expand Down
4 changes: 2 additions & 2 deletions dist/tiny-lru.umd.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "tiny-lru",
"description": "Tiny LRU cache for Client or Server",
"version": "11.2.5",
"version": "11.2.6",
"homepage": "https://github.com/avoidwork/tiny-lru",
"author": "Jason Mulligan <jason.mulligan@avoidwork.com>",
"repository": {
Expand Down

0 comments on commit d14a007

Please sign in to comment.