Skip to content

Commit

Permalink
New release :D
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Mar 16, 2016
1 parent a27b1ad commit f87200b
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
22 changes: 14 additions & 8 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
module.exports = function(grunt) {
module.exports = function (grunt) {

var path = require('path');

// Load the package JSON file
var pkg = grunt.file.readJSON('package.json');
Expand Down Expand Up @@ -34,12 +36,12 @@ module.exports = function(grunt) {
]
},
resources: {
files: [
files: [
{
expand: true,
cwd: projectRoot + 'App_Plugins/' + pkg.name + '/',
src: ['**/*.*'],
dest: 'releases/temp/App_Plugins/' + pkg.name + '/'
expand: true,
cwd: projectRoot + 'App_Plugins/' + pkg.name + '/',
src: ['**/*.*'],
dest: 'releases/temp/App_Plugins/' + pkg.name + '/'
}
]
}
Expand All @@ -52,9 +54,13 @@ module.exports = function(grunt) {
},
zip: {
release: {
cwd: 'releases/temp/',
router: function (filepath) {
var name = path.basename(filepath);
return name == 'LICENSE.html' ? name : filepath.replace('releases/temp/', '');
},
src: [
'releases/temp/**/*.*'
'releases/temp/**/*.*',
projectRoot + '/LICENSE.html'
],
dest: 'releases/github/' + pkg.name + '.v' + version + '.zip'
}
Expand Down
Binary file added releases/github/Skybrud.LinkPicker.v1.0.3.zip
Binary file not shown.
Binary file added releases/nuget/Skybrud.LinkPicker.1.0.3.nupkg
Binary file not shown.
Binary file added releases/umbraco/Skybrud.LinkPicker.v1.0.3.zip
Binary file not shown.
6 changes: 3 additions & 3 deletions src/Skybrud.LinkPicker/Properties/AssemblyInfo.Json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"company": "Skybrud.dk",
"product": "Skybrud.PropertyEditors",
"copyright": "Copyright © 2016",
"version": "1.0.2.0",
"informationalVersion": "1.0.2",
"fileVersion": "0.0.333.3"
"version": "1.0.3.0",
"informationalVersion": "1.0.3",
"fileVersion": "0.0.355.1"
}
4 changes: 2 additions & 2 deletions src/Skybrud.LinkPicker/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.2.0")]
[assembly: AssemblyInformationalVersion("1.0.2")]
[assembly: AssemblyVersion("1.0.3.0")]
[assembly: AssemblyInformationalVersion("1.0.3")]
2 changes: 1 addition & 1 deletion src/Skybrud.LinkPicker/Properties/AssemblyInfoGenerated.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System.Reflection;

[assembly: AssemblyFileVersion("0.0.333.3")]
[assembly: AssemblyFileVersion("0.0.355.1")]

0 comments on commit f87200b

Please sign in to comment.