Skip to content

Commit

Permalink
Merge pull request #239 from JuliaInterop/changelog
Browse files Browse the repository at this point in the history
Add a changelog
  • Loading branch information
JamesWrigley authored May 28, 2024
2 parents e473179 + 06f8ad8 commit 83f7f33
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Vim temporary files
*.sw?
*Manifest.toml
1 change: 1 addition & 0 deletions docs/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build/
src/changelog.md
1 change: 1 addition & 0 deletions docs/Project.toml
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"
10 changes: 10 additions & 0 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
using Documenter, ZMQ
import Changelog

# Build the changelog
Changelog.generate(
Changelog.Documenter(),
joinpath(@__DIR__, "src/_changelog.md"),
joinpath(@__DIR__, "src/changelog.md"),
repo="JuliaInterop/ZMQ.jl"
)

makedocs(
modules = [ZMQ],
Expand All @@ -11,6 +20,7 @@ makedocs(
"man/examples.md",
],
"Reference" => "reference.md",
"Changelog" => "changelog.md"
],
format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true")
)
Expand Down
40 changes: 40 additions & 0 deletions docs/src/_changelog.md
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]).

0 comments on commit 83f7f33

Please sign in to comment.