Skip to content

Commit 4719829

Browse files
Merge pull request #17 from TrueSparrowSystems/branding-changes
Branding changes
2 parents 6bfa643 + a5d05c8 commit 4719829

17 files changed

Lines changed: 31 additions & 65 deletions

.travis.yml

Lines changed: 0 additions & 37 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 @plgworks/base
2+
* Instance Composer from @truesparrow/base
33
*
44
* @module instance_composer
55
*/
66

7-
const Base = require('@plgworks/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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![UniCache logo Dark](https://user-images.githubusercontent.com/7627517/195535780-47906a3b-c302-4c59-bb1e-d171914ff1bd.png)
22

3-
[![Latest version](https://img.shields.io/npm/v/@plgworks/unicache.svg?maxAge=3600)][npm]
3+
[![Latest version](https://img.shields.io/npm/v/@truesparrow/unicache.svg?maxAge=3600)][npm]
44

5-
[npm]: https://www.npmjs.com/package/@plgworks/unicache
5+
[npm]: https://www.npmjs.com/package/@truesparrow/unicache
66

77
UniCache is an open-source NPM package that provides unified / singleton interface and behavior for [Memcached](https://memcached.org/),
88
[Redis](https://redis.io/docs/) and In-memory caching. Easily interact or switch between them in minutes!
@@ -29,7 +29,7 @@ Follow the installation guides to get the caching engines of your choice, up and
2929

3030
## Install NPM
3131
```shell script
32-
npm install @plgworks/unicache --save
32+
npm install @truesparrow/unicache --save
3333
```
3434

3535
## Initialize
@@ -39,7 +39,7 @@ Example snippet for the UniCache singleton object initialization is given below.
3939
```js
4040
// Include the following snippet in a separate file, which can be required all accross the code to get unicache instance.
4141
// If using different caching engines simultaneously in a single codebase, have different files for each.
42-
const UniCache = require('@plgworks/unicache');
42+
const UniCache = require('@truesparrow/unicache');
4343

4444
const configStrategy = {
4545
engine: "none/redis/memcached",
@@ -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('@plgworks/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 @plgworks/cache
2+
* Index File for @truesparrow/cache
33
*/
44

5-
const Base = require('@plgworks/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 @plgworks/cache objects.
1+
// This is to share the instance map between multiple @truesparrow/cache objects.
22

33
module.exports = {};

0 commit comments

Comments
 (0)