Skip to content

Commit 1f3e942

Browse files
committed
Prep for 0.3.0 release
1 parent b688340 commit 1f3e942

4 files changed

Lines changed: 14 additions & 5 deletions

File tree

ReleaseNotes.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
# 0.3.0
2+
3+
- [Feature] All output file objects now derive from a common `OutputFile` base class
4+
- [Feature] Added the `Scripty.Core` namespace and assembly to the script
5+
- [Feature] Moved the globals into a `ScriptContext` class and exposed it as a `Context` property
6+
- [Refactoring] Renamed the MSBuild item group item to `ScriptyFile` (#6)
7+
18
# 0.2.0
29

3-
- Added a Visual Studio single file generator (a.k.a "custom tool")
10+
- [Feature] Added a Visual Studio single file generator (a.k.a "custom tool")
411

512
# 0.1.0
613

build.cake

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,11 @@
66
// - Update ReleaseNotes.md
77
// - Update the version in Scripty.CustomTool/source.extension.vsixmanifest
88
// - Run a normal build with Cake to set SolutionInfo.cs in the repo ("build.cmd")
9+
// - Commit the changes to develop, switch to master, and ff merge from develop
910
// - Run a Publish build with Cake ("build.cmd --target Publish")
1011
// - No need to add a version tag to the repo - added by GitHub on publish
1112
// - Manually upload the .vsix in src\artifacts to the Visual Studio Gallery
13+
// - Switch back to develop branch
1214

1315
#addin "Cake.FileHelpers"
1416
#addin "Octokit"

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.2.0.0" Language="en-US" Publisher="Dave Glick" />
4+
<Identity Id="Scripty.CustomTool" Version="0.3.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.2.0")]
10-
[assembly: AssemblyFileVersion("0.2.0")]
11-
[assembly: AssemblyInformationalVersion("0.2.0")]
9+
[assembly: AssemblyVersion("0.3.0")]
10+
[assembly: AssemblyFileVersion("0.3.0")]
11+
[assembly: AssemblyInformationalVersion("0.3.0")]
1212
[assembly: AssemblyCopyright("Copyright © Scripty Contributors")]
1313

0 commit comments

Comments
 (0)