rake-dotnet 0.0.9 → 0.0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +11 -0
  2. data/README.markdown +1 -1
  3. data/Rakefile +1 -1
  4. metadata +1 -1
@@ -1,3 +1,14 @@
1
+ === 0.0.10 / 2009-04-30
2
+
3
+ * SLAP: Forgot to update release notes before releasing.
4
+
5
+ === 0.0.9 / 2009-04-30
6
+
7
+ * NEW: If VERBOSE=true is passed on the command line, command-line calls will get echoed before they're run (otherwise, they get ellipsis'd by rake's error tracing, which doesn't let one see the arguments)
8
+ * NEW: clobber_fxcop will kill off the fxcop report in isolation
9
+ * FIX: make get_tools_dir correctly return the path instead of just think about it.
10
+ * FIX: Implement working-directory on ncover so it executes from the same location as the DLLs it's using a tool to profile
11
+
1
12
  === 0.0.8 / 2009-?
2
13
 
3
14
  * CHANGE: Eliminate the need to pass stuff to AssemblyInfoTask when it can just use the defaults ... by default.
@@ -4,7 +4,7 @@
4
4
 
5
5
  ## DESCRIPTION:
6
6
 
7
- Rake dotnet is a library of custom tasks designed to (try to!) make your life as a build-automation author easier.
7
+ rake-dotnet is a library of custom tasks designed to (try to!) make your life as a build-automation author easier.
8
8
 
9
9
  When have you ever heard of a build-script called anything other than a script? msbuild and nant both try to get you to call them projects. I'll say it up front - the idea of using XML to declaratively define the sequence of hoops one gets the computer to jump through to turn source into packaged software never sat right with me. I looked for something better one day, and found rake. I haven't touched msbuild or nant since, and I've been happier ;-)
10
10
 
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'hoe'
5
5
  require 'Pathname'
6
6
  require 'rake/clean'
7
7
 
8
- Hoe.new('rake-dotnet', '0.0.9') do |p|
8
+ Hoe.new('rake-dotnet', '0.0.10') do |p|
9
9
  p.author = 'Peter Mounce'
10
10
  p.description = 'Making a .NET build-automation dev\'s life easier, one angle-bracket at a time'
11
11
  p.email = 'pete@neverrunwithscissors.com'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rake-dotnet
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter MouncePeter Mounce