Skip to content

Commit 81409df

Browse files
Updated url's due to transfer of repository to @custom-dev-tools
Also updated copyright year.
1 parent f236b14 commit 81409df

File tree

6 files changed

+17
-12
lines changed

6 files changed

+17
-12
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
66

77
## [Unreleased]
88

9+
## [1.3.5] - 2020.06.19
10+
11+
### Updated
12+
- Transferred ownership of package to @custom-dev-tools.
13+
914
## [1.3.4] - 2020-03-18
1015

1116
### Security

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2019 Matthew Rath
1+
Copyright (c) 2020 Matthew Rath
22

33
Permission is hereby granted, free of charge, to any person
44
obtaining a copy of this software and associated documentation

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![NPM version](http://img.shields.io/npm/v/grunt-cache-killer.svg?label=grunt-cache-killer&logo=npm)](https://www.npmjs.com/package/grunt-cache-killer?activeTab=versions) ![Maintained](https://img.shields.io/static/v1.svg?label=maintained&message=yes&color=informational&logo=npm) ![NPN downloads](http://img.shields.io/npm/dt/grunt-cache-killer.svg?logo=npm)
66

7-
[![GitHub version](https://img.shields.io/github/package-json/v/midnight-coding/grunt-cache-killer.svg?label=grunt-cache-killer&logo=github)](https://github.com/midnight-coding/grunt-cache-killer/releases) [![GitHub License](https://img.shields.io/github/license/midnight-coding/grunt-cache-killer.svg?color=informational&logo=github)](https://github.com/midnight-coding/grunt-cache-killer/blob/master/LICENSE-MIT) ![GitHub release date](https://img.shields.io/github/release-date/midnight-coding/grunt-cache-killer.svg?logo=github) [![GitHub open issues](https://img.shields.io/github/issues-raw/midnight-coding/grunt-cache-killer.svg?logo=github)](https://github.com/midnight-coding/grunt-cache-killer/milestones?state=open) [![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/midnight-coding/grunt-cache-killer.svg?logo=github)](https://github.com/midnight-coding/grunt-cache-killer/milestones?state=closed)
7+
[![GitHub version](https://img.shields.io/github/package-json/v/custom-dev-tools/grunt-cache-killer.svg?label=grunt-cache-killer&logo=github)](https://github.com/custom-dev-tools/grunt-cache-killer/releases) [![GitHub License](https://img.shields.io/github/license/custom-dev-tools/grunt-cache-killer.svg?color=informational&logo=github)](https://github.com/custom-dev-tools/grunt-cache-killer/blob/master/LICENSE-MIT) ![GitHub release date](https://img.shields.io/github/release-date/custom-dev-tools/grunt-cache-killer.svg?logo=github) [![GitHub open issues](https://img.shields.io/github/issues-raw/custom-dev-tools/grunt-cache-killer.svg?logo=github)](https://github.com/custom-dev-tools/grunt-cache-killer/milestones?state=open) [![GitHub closed issues](https://img.shields.io/github/issues-closed-raw/custom-dev-tools/grunt-cache-killer.svg?logo=github)](https://github.com/custom-dev-tools/grunt-cache-killer/milestones?state=closed)
88

99
---
1010

@@ -16,7 +16,7 @@ This [Grunt](https://gruntjs.com/) plugin inserts a **cache avoiding** string in
1616

1717
Find this plugin at:
1818
- [https://www.npmjs.com/package/grunt-cache-killer](https://www.npmjs.com/package/grunt-cache-killer).
19-
- [https://github.com/midnight-coding/grunt-cache-killer](https://github.com/midnight-coding/grunt-cache-killer).
19+
- [https://github.com/custom-dev-tools/grunt-cache-killer](https://github.com/custom-dev-tools/grunt-cache-killer).
2020

2121
## Table Of Contents
2222

@@ -379,4 +379,4 @@ In lieu of a formal styleguide, take care to maintain the existing coding style.
379379

380380
Find more on the release history at:
381381

382-
[https://github.com/midnight-coding/grunt-cache-killer/blob/master/CHANGELOG.md](https://github.com/midnight-coding/grunt-cache-killer/blob/master/CHANGELOG.md).
382+
[https://github.com/custom-dev-tools/grunt-cache-killer/blob/master/CHANGELOG.md](https://github.com/custom-dev-tools/grunt-cache-killer/blob/master/CHANGELOG.md).

build/gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* grunt-cache-killer
3-
* https://github.com/midnight-coding/grunt-cache-killer
3+
* https://github.com/custom-dev-tools/grunt-cache-killer
44
*
5-
* Copyright (c) 2019 Matthew Rath
5+
* Copyright (c) 2020 Matthew Rath
66
* Licensed under the MIT license.
77
*/
88

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
22
"name": "grunt-cache-killer",
33
"description": "Kill your asset cache file problems by updating their filenames and any references to them.",
4-
"version": "1.3.4",
5-
"homepage": "https://github.com/midnight-coding/grunt-cache-killer",
4+
"version": "1.3.5",
5+
"homepage": "https://github.com/custom-dev-tools/grunt-cache-killer",
66
"author": {
77
"name": "Matthew Rath",
88
"email": "matthew.rath@qclean.com.au"
99
},
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/midnight-coding/grunt-cache-killer.git"
12+
"url": "https://github.com/custom-dev-tools/grunt-cache-killer.git"
1313
},
1414
"bugs": {
15-
"url": "https://github.com/midnight-coding/grunt-cache-killer/issues"
15+
"url": "https://github.com/custom-dev-tools/grunt-cache-killer/issues"
1616
},
1717
"license": "MIT",
1818
"engines": {

tasks/cacheKiller.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*
22
* grunt-cache-killer
3-
* https://github.com/midnight-coding/grunt-cache-killer
3+
* https://github.com/custom-dev-tools/grunt-cache-killer
44
*
5-
* Copyright (c) 2019 Matthew Rath
5+
* Copyright (c) 2020 Matthew Rath
66
* Licensed under the MIT license.
77
*/
88

0 commit comments

Comments
 (0)