From 96675d37f62b5a7d8ef555759699ae7412ebbfd8 Mon Sep 17 00:00:00 2001 From: Brandon Flores Date: Sun, 22 Oct 2023 17:00:42 -0500 Subject: [PATCH] Provided more details on changes to `NamedAtom` --- CHANGELOG.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index df855ebf..df53e84c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,9 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ### Changed - `NamedAtom` now uses the `InlineString15` type instead of an `NTuple{8,Char}` for the `name` -field. +field. Atom labels of up to 15 Unicode characters are supported. + - `name(a::NamedAtom)` returns a `String`; `a.name` returns an `InlineStrings.InlineString15`, as +does `getfield(a, :name)`. ### Fixed - Admonition boxes in documentation now render correctly.