Skip to content

Commit 0c24061

Browse files
committed
Preps for release
1 parent 554ee2c commit 0c24061

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

ReleaseNotes.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.5.0
2+
3+
- [Feature] CLI now accepts relative paths to project files
4+
- [Feature] Adds `ScriptFiles` to the list of available build actions in Visual Studio (#45, thanks @ap0llo)
5+
- [Feature] CLI now scans for `.csx` files in project if none are explicitly specified (#5)
6+
- [Feature] Automatic indentation support (#15)
7+
- [Feature] Support for the Roslyn formatter to automatically format output (#47, thanks @thebigb)
8+
- [Feature] Implements a Cake addin for out-of-band Scripty evaluation during Cake builds (#31, thanks @agc93).
9+
110
# 0.4.0
211

312
- [Feature][Breaking Change] New project tree abstraction (#13). If you were using the `Project` property previous to this release, you can now get to the Roslyn project object using the `Project.Analysis` property.

src/Scripty.CustomTool/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="Scripty.CustomTool" Version="0.4.0.0" Language="en-US" Publisher="Dave Glick" />
4+
<Identity Id="Scripty.CustomTool" Version="0.5.0.0" Language="en-US" Publisher="Dave Glick" />
55
<DisplayName>Scripty</DisplayName>
66
<Description xml:space="preserve">Runs Scripty as a custom tool.</Description>
77
<MoreInfo>https://github.com/daveaglick/Scripty</MoreInfo>

src/SolutionInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
using System.Reflection;
77

88
[assembly: AssemblyProduct("Scripty")]
9-
[assembly: AssemblyVersion("0.4.0")]
10-
[assembly: AssemblyFileVersion("0.4.0")]
11-
[assembly: AssemblyInformationalVersion("0.4.0")]
9+
[assembly: AssemblyVersion("0.5.0")]
10+
[assembly: AssemblyFileVersion("0.5.0")]
11+
[assembly: AssemblyInformationalVersion("0.5.0")]
1212
[assembly: AssemblyCopyright("Copyright © Scripty Contributors")]
1313

0 commit comments

Comments
 (0)