diff --git a/docs/pages/changelog.html b/docs/pages/changelog.html index aa81b58e..e5b311f8 100644 --- a/docs/pages/changelog.html +++ b/docs/pages/changelog.html @@ -61,6 +61,14 @@

Change log

+

Typewriter 1.15

+

Support for converting Class, Enum and Interface to Type.

+ +

1.15.0

+ +

Typewriter 1.14

Render All Templates context menu, bug fixes.

diff --git a/src/Typewriter/Properties/SharedAssemblyInfo.cs b/src/Typewriter/Properties/SharedAssemblyInfo.cs index 6647ce36..59d598d2 100644 --- a/src/Typewriter/Properties/SharedAssemblyInfo.cs +++ b/src/Typewriter/Properties/SharedAssemblyInfo.cs @@ -12,4 +12,4 @@ [assembly: NeutralResourcesLanguage("en-US")] -[assembly: AssemblyVersion("1.14.2.*")] \ No newline at end of file +[assembly: AssemblyVersion("1.15.0.*")] \ No newline at end of file diff --git a/src/Typewriter/VisualStudio/ExtensionPackage.cs b/src/Typewriter/VisualStudio/ExtensionPackage.cs index c0569f11..5c1a938e 100644 --- a/src/Typewriter/VisualStudio/ExtensionPackage.cs +++ b/src/Typewriter/VisualStudio/ExtensionPackage.cs @@ -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)] diff --git a/src/Typewriter/source.extension.vsixmanifest b/src/Typewriter/source.extension.vsixmanifest index ccbb6f0a..3d4396ae 100644 --- a/src/Typewriter/source.extension.vsixmanifest +++ b/src/Typewriter/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + Typewriter 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. http://frhagn.github.io/Typewriter/