Skip to content

Commit

Permalink
New release :D
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed May 16, 2017
1 parent 6a7a4b5 commit b5e79cd
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
6 changes: 4 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ module.exports = function(grunt) {
pkg: pkg,
clean: {
files: [
'releases/files/**/*.*'
'releases/files/'
]
},
copy: {
Expand All @@ -28,6 +28,8 @@ module.exports = function(grunt) {
expand: true,
cwd: projectRoot + 'bin/',
src: [
'Skybrud.Essentials.dll',
'Skybrud.Essentials.xml',
pkg.name + '.dll',
pkg.name + '.xml'
],
Expand Down Expand Up @@ -86,7 +88,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-nuget');
grunt.loadNpmTasks('grunt-zip');

grunt.registerTask('dev', ['clean', 'copy', 'zip', 'umbracoPackage', 'nugetpack']);
grunt.registerTask('dev', ['clean', 'copy', 'zip', 'umbracoPackage', 'nugetpack', 'clean']);

grunt.registerTask('default', ['dev']);

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016 Bo Mortensen & The Umbraco Community
Copyright (c) 2017 Bo Mortensen & The Umbraco Community

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Our.Umbraco.OpeningHours/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Bo Mortensen & The Umbraco Community")]
[assembly: AssemblyProduct("Our.Umbraco.OpeningHours")]
[assembly: AssemblyCopyright("Copyright © 2016")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -31,5 +31,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.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-beta3")]
[assembly: AssemblyInformationalVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
4 changes: 2 additions & 2 deletions src/Our.Umbraco.OpeningHours/Properties/AssemblyInfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"description": "An Umbraco property editor for handling opening hours.",
"company": "Bo Mortensen & The Umbraco Community",
"product": "Our.Umbraco.OpeningHours",
"copyright": "Copyright © 2016",
"copyright": "Copyright © 2017",
"version": "1.0.0.0",
"informationalVersion": "1.0.0-beta3",
"informationalVersion": "1.0.0",
"fileVersion": "1.0.0.0"
}

0 comments on commit b5e79cd

Please sign in to comment.