Skip to content

Commit

Permalink
Release v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
S1SYPHOS committed Jul 13, 2021
1 parent 43c60dc commit d0d1b11
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Acknowledge the people behind your frontend dependencies - and give thanks!",
"type": "library",
"license": "MIT",
"version": "1.2.0",
"version": "1.2.1",
"keywords": ["gratitude", "appreciation", "gratefulness", "thankfulness"],
"homepage": "https://github.com/S1SYPHOS",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion lib/Drivers/Composer.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protected function process(\Shieldon\SimpleCache\Cache $cache, array $config): \
$data = [];

# Build unique caching key
$hash = md5($pkgName);
$hash = md5($pkgName . $pkg['version']);

# Fetch information about package ..
# (1) .. from cache (if available)
Expand Down
2 changes: 1 addition & 1 deletion lib/Drivers/Node.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected function process(\Shieldon\SimpleCache\Cache $cache, array $config): \
$data = [];

# Build unique caching key
$hash = md5($pkgName);
$hash = md5($pkgName . $pkg['version']);

# Fetch information about package ..
if ($cache->has($hash)) {
Expand Down
2 changes: 1 addition & 1 deletion lib/Thx.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Thx
/**
* Current version
*/
const VERSION = '1.2.0';
const VERSION = '1.2.1';


/**
Expand Down

0 comments on commit d0d1b11

Please sign in to comment.