Skip to content

Commit a5d05c8

Browse files
changes
1 parent f212a56 commit a5d05c8

17 files changed

Lines changed: 27 additions & 62 deletions

.travis.yml

Lines changed: 0 additions & 38 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## UniCache v2.0.0
2+
- Republished package under @truesparrow
3+
14
## UniCache v1.0.0
25
- First release of UniCache having support for 3 caching engines - Memcached, Redis and In-memory Cache
36
- Test case coverage improved to 95%.

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Helping hands are always welcome to contribute with bug fixes and enhancements t
44
which you observe while integrating UniCache in your project.
55

66
## How to Report Issues
7-
To report an issue, please use the [Github issues tracker](https://github.com/PLG-Works/UniCache/issues). When reporting issues,
7+
To report an issue, please use the [Github issues tracker](https://github.com/TrueSparrowSystems/UniCache/issues). When reporting issues,
88
please mention the following details, whichever applicable:
99
- Steps to reproduce with sample snippets.
1010
- Actual vs. expected behaviour.

InstanceComposer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/**
2-
* Instance Composer from @TrueSparrowSystems/base
2+
* Instance Composer from @truesparrow/base
33
*
44
* @module instance_composer
55
*/
66

7-
const Base = require('@TrueSparrowSystems/base');
7+
const Base = require('@truesparrow/base');
88

99
module.exports = Base.InstanceComposer;

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
The MIT License (MIT)
2-
Copyright © 2022 PLG Works
2+
Copyright © 2022 True Sparrow Systems Pvt. Ltd.
33

44
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,4 +211,4 @@ npm run test
211211
## Contribution
212212
We welcome more helping hands to make UniCache better. Feel free to report issues, raise PRs for fixes & enhancements.
213213

214-
<p align="left">Built with :heart: by <a href="https://plgworks.com/" target="_blank">PLG Works</a></p>
214+
<p align="left">Built with :heart: by <a href="https://truesparrow.com/" target="_blank">True Sparrow</a></p>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
2.0.0

config/cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Base = require('@TrueSparrowSystems/base');
1+
const Base = require('@truesparrow/base');
22

33
const rootPrefix = '..',
44
coreConstants = require(rootPrefix + '/config/coreConstant');

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/**
2-
* Index File for @TrueSparrowSystems/cache
2+
* Index File for @truesparrow/cache
33
*/
44

5-
const Base = require('@TrueSparrowSystems/base');
5+
const Base = require('@truesparrow/base');
66

77
const rootPrefix = '.',
88
version = require(rootPrefix + '/package.json').version,

lib/existingInstance.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// This is to share the instance map between multiple @TrueSparrowSystems/cache objects.
1+
// This is to share the instance map between multiple @truesparrow/cache objects.
22

33
module.exports = {};

0 commit comments

Comments
 (0)