Skip to content

Commit

Permalink
1.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frhagn committed Oct 15, 2017
1 parent 056e78d commit 5f68f66
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions docs/pages/changelog.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@
<div class="col-sm-10 col-sm-push-1">
<h1>Change log</h1>

<h3>Typewriter 1.15</h3>
<p class="lead">Support for converting Class, Enum and Interface to Type.</p>

<h4>1.15.0</h4>
<ul>
<li>Added support for converting Class, Enum and Interface to Type. (<a href="https://github.com/frhagn/Typewriter/issues/221">#221</a>)</li>
</ul>

<h3>Typewriter 1.14</h3>
<p class="lead">Render All Templates context menu, bug fixes.</p>

Expand Down
2 changes: 1 addition & 1 deletion src/Typewriter/Properties/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@

[assembly: NeutralResourcesLanguage("en-US")]

[assembly: AssemblyVersion("1.14.2.*")]
[assembly: AssemblyVersion("1.15.0.*")]
2 changes: 1 addition & 1 deletion src/Typewriter/VisualStudio/ExtensionPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace Typewriter.VisualStudio
[Guid(Constants.ExtensionPackageId)]
[PackageRegistration(UseManagedResourcesOnly = true)]
[ProvideAutoLoad(VSConstants.UICONTEXT.SolutionExists_string)]
[InstalledProductRegistration("#110", "#112", "1.14.2", IconResourceID = 401)]
[InstalledProductRegistration("#110", "#112", "1.15.0", IconResourceID = 401)]
[ProvideLanguageService(typeof(LanguageService), Constants.LanguageName, 100, DefaultToInsertSpaces = true)]
[ProvideLanguageExtension(typeof(LanguageService), Constants.TemplateExtension)]
[ProvideMenuResource("Menus.ctmenu", 1)]
Expand Down
2 changes: 1 addition & 1 deletion src/Typewriter/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="45b6b392-ce2f-409c-a39f-bbf90b34349e" Version="1.14.2" Language="en-US" Publisher="frhagn" />
<Identity Id="45b6b392-ce2f-409c-a39f-bbf90b34349e" Version="1.15.0" Language="en-US" Publisher="frhagn" />
<DisplayName>Typewriter</DisplayName>
<Description xml:space="preserve">Typewriter generates TypeScript files from c# code files using TypeScript Templates. This allows you to create fully typed TypeScript representations of server side API that automatically updates when you make changes to your c# code.</Description>
<MoreInfo>http://frhagn.github.io/Typewriter/</MoreInfo>
Expand Down

0 comments on commit 5f68f66

Please sign in to comment.