diff --git a/Changes b/Changes index c898426..7e21830 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,6 @@ Revision history for Chemistry::Elements {{$NEXT}} + +0.2 2024-08-07T12:51:52+02:00 - Initial version diff --git a/META6.json b/META6.json index 4fcf50b..9d9acdd 100644 --- a/META6.json +++ b/META6.json @@ -30,5 +30,5 @@ "META6", "Test::META" ], - "version": "0.001004" + "version": "0.2" } diff --git a/README.md b/README.md index b0890e3..0967018 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Actions Status](https://github.com/raku-community-modules/Chemistry-Elements/actions/workflows/linux.yml/badge.svg)](https://github.com/raku-community-modules/Chemistry-Elements/actions) [![Actions Status](https://github.com/raku-community-modules/Chemistry-Elements/actions/workflows/macos.yml/badge.svg)](https://github.com/raku-community-modules/Chemistry-Elements/actions) [![Actions Status](https://github.com/raku-community-modules/Chemistry-Elements/actions/workflows/windows.yml/badge.svg)](https://github.com/raku-community-modules/Chemistry-Elements/actions) +[![Actions Status](https://github.com/raku-community-modules/Chemistry-Elements/actions/workflows/linux.yml/badge.svg)](https://github.com/raku-community-modules/Chemistry-Elements/actions) [![Actions Status](https://github.com/raku-community-modules/Chemistry-Elements/actions/workflows/macos.yml/badge.svg)](https://github.com/raku-community-modules/Chemistry-Elements/actions) NAME ==== diff --git a/lib/Chemistry/Elements.rakumod b/lib/Chemistry/Elements.rakumod index 7c4fd10..570499c 100644 --- a/lib/Chemistry/Elements.rakumod +++ b/lib/Chemistry/Elements.rakumod @@ -184,10 +184,10 @@ my constant %names = #| Do various things with chemical elements. Convert between symbols, #| names, and atomic numbers. -class Chemistry::Elements:auth:ver<0.001004> { +class Chemistry::Elements:auth:ver<0.2> { - # https://rt.perl.org/Ticket/Display.html?id=126763 - # http://stackoverflow.com/q/40097868/2766176 +# https://rt.perl.org/Ticket/Display.html?id=126763 +# http://stackoverflow.com/q/40097868/2766176 #| A Str that is one of the known chemical symbols subset ZInt of Cool is export where { state ( $min, $max ) = %names.keys.sort( { $^a <=> $^b } ).[0,*-1];