Skip to content

Commit

Permalink
Version 1.12.32
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Feb 24, 2021
1 parent 7f50fc8 commit df6c6fa
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change log
==========

## v1.12.32 - February 24, 2021
* In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of TypeScript translator
* In BundleTransformer.TypeScript:
* Added support of the TypeScript version 4.2 RTM (please note: The 4.2 RTM release is also called '4.2.2')
* In configuration settings of TypeScript translator was added one new property - `NoPropertyAccessFromIndexSignature` (default `false`)
* In BundleTransformer.NUglify added support of the NUglify version 1.13.3

## v1.12.31 - February 22, 2021
* In BundleTransformer.Handlebars added support of the Handlebars version 4.7.7

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: ComVisible(false)]
[assembly: Guid("d858d771-b511-4517-bc9a-6feb6d0c4c3e")]

[assembly: AssemblyVersion("1.12.31.0")]
[assembly: AssemblyFileVersion("1.12.31.0")]
[assembly: AssemblyVersion("1.12.32.0")]
[assembly: AssemblyFileVersion("1.12.32.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: IntelliSense</Product>
<VersionPrefix>1.12.25</VersionPrefix>
<VersionPrefix>1.12.32</VersionPrefix>
<TargetFramework>net40</TargetFramework>
</PropertyGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.ConfigurationIntelliSense/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: IntelliSense v1.12.25
README file for Bundle Transformer: IntelliSense v1.12.32

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: NUglify</Product>
<VersionPrefix>1.12.30</VersionPrefix>
<VersionPrefix>1.12.32</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.NUglify/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: NUglify v1.12.30
README file for Bundle Transformer: NUglify v1.12.32

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: TypeScript</Product>
<VersionPrefix>1.12.29</VersionPrefix>
<VersionPrefix>1.12.32</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand All @@ -15,7 +15,7 @@
<Import Project="../../build/nuget-for-dotnet-lib.props" />

<PropertyGroup>
<Description>BundleTransformer.TypeScript contains one translator-adapter - `TypeScriptTranslator` (supports the TypeScript (http://www.typescriptlang.org) version 4.2.2). This adapter makes translation of TypeScript code to JS code. Also contains the `TypeScriptAssetHandler` debugging HTTP handler, which is responsible for text output of translated TypeScript asset.
<Description>BundleTransformer.TypeScript contains one translator-adapter - `TypeScriptTranslator` (supports the TypeScript (http://www.typescriptlang.org) version 4.2 RTM). This adapter makes translation of TypeScript code to JS code. Also contains the `TypeScriptAssetHandler` debugging HTTP handler, which is responsible for text output of translated TypeScript asset.

BundleTransformer.TypeScript does not support external modules (CommonJS, AMD, SystemJS, UMD and ES6 modules).

Expand Down
4 changes: 2 additions & 2 deletions src/BundleTransformer.TypeScript/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: TypeScript v1.12.29
README file for Bundle Transformer: TypeScript v1.12.32

--------------------------------------------------------------------------------

Expand All @@ -13,7 +13,7 @@
===========
BundleTransformer.TypeScript contains one translator-adapter -
`TypeScriptTranslator` (supports the TypeScript (http://www.typescriptlang.org)
version 4.2.2). This adapter makes translation of TypeScript code to JS code.
version 4.2 RTM). This adapter makes translation of TypeScript code to JS code.
Also contains the `TypeScriptAssetHandler` debugging HTTP handler, which is
responsible for text output of translated TypeScript asset.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: Tests</Product>
<VersionPrefix>1.12.31</VersionPrefix>
<VersionPrefix>1.12.32</VersionPrefix>
<TargetFramework>net452</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit df6c6fa

Please sign in to comment.