-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #239 from JuliaInterop/changelog
Add a changelog
- Loading branch information
Showing
5 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# Vim temporary files | ||
*.sw? | ||
*Manifest.toml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
build/ | ||
src/changelog.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[deps] | ||
Changelog = "5217a498-cd5d-4ec6-b8c2-9b85a09b6e3e" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
ZMQ = "c2297ded-f4af-51ae-bb23-16f91089e4e1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
```@meta | ||
CurrentModule = ZMQ | ||
``` | ||
|
||
# Changelog | ||
|
||
This documents notable changes in ZMQ.jl. The format is based on [Keep a | ||
Changelog](https://keepachangelog.com). | ||
|
||
|
||
## [v1.2.5] - 2024-05-28 | ||
|
||
### Fixed | ||
|
||
- Fixed support for Julia 1.3 in the precompilation workload ([#237]). | ||
|
||
## [v1.2.4] - 2024-05-27 | ||
|
||
### Changed | ||
|
||
- Refactored the internals to use the public `FileWatching.FDWatcher` instead of | ||
`FileWatching._FDWatcher` ([#215]). | ||
|
||
### Fixed | ||
|
||
- Docstrings to inner constructors are now assigned properly ([#227]). | ||
- [`Socket`](@ref) now holds a reference to its [`Context`](@ref) to prevent it from | ||
being garbage collected accidentally ([#229]). | ||
- Changed the precompilation workload to use any available port to avoid port | ||
conflicts ([#234]). | ||
|
||
## [v1.2.3] - 2024-05-12 | ||
|
||
### Added | ||
|
||
- Support for setting `ZMQ_IMMEDIATE` and `ZMQ_CONFLATE` on sockets ([#209], | ||
[#222]). | ||
- Overloads for [`Message`](@ref) to allow deserializing them with MsgPack.jl | ||
([#214]). | ||
- A precompilation workload to improve TTFX ([#224]). |