Skip to content

Commit

Permalink
Bump version. Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Lovesan committed Mar 28, 2024
1 parent 971c4d8 commit fb3fdfb
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 6 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 0.14.0 Callable classes. Apropos facility. ECL support. Documentation! More examples.
* Added the documentation (at last!)
* Implemented various minor fixes, improvements and refactoring
* Added `apropos` facility
* Added .NET-callable classes
* ECL support
* Reworked the usage of `*default-assemblies*` variable
* Reworked the Asp .Net Core example
* Allowed .NET to handle SIGRTMIN on Linux
* Added the WPF package browser example
* Fixed few bugs with invalid primitive type handling
* Added an alias for `System.Void`
* Handled `*print-escape*` in the printer facility
* Fixed MZ array type resolution
* Implemented a minor addition to custom syntax for convenience
* Fixed a bug with CoreCLR reloading on foreign library redefinition
* Added dependency on the `global-vars` library, for global variables
* Reworked `rwlock`
* Embraced `bt2` API from `bordeaux-threads` library
* Implemented various pathname-related fixes, especially on Windows
* Updated CircleCI pipeline to the latest .NET

# 0.13.0 Printer facility, various improvements
* Added extensible printer facility
* Improved type name parser(MZ vectors, arrays of generic type definitions, identifier handling)
Expand Down
2 changes: 1 addition & 1 deletion bike-examples.asd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
;;; DEALINGS IN THE SOFTWARE.

(asdf:defsystem #:bike-examples
:version "0.13.0"
:version "0.14.0"
:description "Common Lisp .Net Core Interop examples"
:author "Dmitry Ignatiev <lovesan.ru at gmail.com>"
:maintainer "Dmitry Ignatiev <lovesan.ru at gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion bike-internals.asd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
;;; DEALINGS IN THE SOFTWARE.

(asdf:defsystem #:bike-internals
:version "0.13.0"
:version "0.14.0"
:description "Common Lisp .Net Core Interop Internals"
:author "Dmitry Ignatiev <lovesan.ru at gmail.com>"
:maintainer "Dmitry Ignatiev <lovesan.ru at gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion bike-tests.asd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
;;; DEALINGS IN THE SOFTWARE.

(asdf:defsystem #:bike-tests
:version "0.13.0"
:version "0.14.0"
:description "Common Lisp .Net Core Interop tests"
:author "Dmitry Ignatiev <lovesan.ru at gmail.com>"
:maintainer "Dmitry Ignatiev <lovesan.ru at gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion bike.asd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
;;; DEALINGS IN THE SOFTWARE.

(asdf:defsystem #:bike
:version "0.13.0"
:version "0.14.0"
:description "Common Lisp .Net Core Interop"
:author "Dmitry Ignatiev <lovesan.ru at gmail.com>"
:maintainer "Dmitry Ignatiev <lovesan.ru at gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion examples/BikeExamples/BikeExamples.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<VersionPrefix>0.13.0</VersionPrefix>
<VersionPrefix>0.14.0</VersionPrefix>
<Copyright>© 2019, Dmitry Ignatiev &lt;lovesan.ru at gmail.com&gt;</Copyright>
<Description>Common Lisp .Net Core Interop Examples</Description>
<AssemblyTitle>Common Lisp .Net Core Interop Examples</AssemblyTitle>
Expand Down
2 changes: 1 addition & 1 deletion src/BikeInterop/BikeInterop.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<VersionPrefix>0.13.0</VersionPrefix>
<VersionPrefix>0.14.0</VersionPrefix>
<Copyright>© 2019, Dmitry Ignatiev &lt;lovesan.ru at gmail.com&gt;</Copyright>
<Description>Common Lisp .Net Core Interop</Description>
<AssemblyTitle>Common Lisp .Net Core Interop</AssemblyTitle>
Expand Down

0 comments on commit fb3fdfb

Please sign in to comment.