-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changes
212 lines (136 loc) · 4.63 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
#Revision history for {{ $dist->name }}
{{$NEXT}}
[Documentation]
- Document support policy for older Perl versions.
- Bumped copyright year.
v1.2.2 2022-09-03 09:27:39+01:00 Europe/London
[Documentation]
- Fix encoding of links in README.
[Other]
- Fix issue with MANIFEST.SKIP.
- Specify minimum version of Exporter.
- Sign release.
v1.2.1 2021-09-22 16:32:07+01:00 Europe/London
[Documentation]
- Fixed typos in Changes.
[Tests]
- Add author test for unused vars.
v1.2.0 2021-04-19 16:29:19+01:00 Europe/London
[Bug Fixes]
- Fixed issue with newer versions of List::Util, fixes GH#15.
[Enhancements]
- Removed prerequisite of List::AllUtils.
v1.1.2 2021-03-13 12:17:00+00:00 Europe/London
[Documentation]
- Reorganised POD so that a the an issue with intermixed POD is
properly in the KNOWN ISSUES section.
- Bumped copyright year.
[Other]
- Add List::SomeUtils::XS to recommended prereqs.
v1.1.1 2020-12-17 15:51:58+00:00 Europe/London
[Tests]
- Specify minimum version of Sub::Identify.
v1.1.0 2020-12-17 13:42:01+00:00 Europe/London
[Enhancements]
- Subroutine constants are genuinely marked as subroutine constants.
[Toolchain]
- Removed `.travis.yml` from git repo.
v1.0.0 2020-12-11 13:56:43+00:00 Europe/London
- No changes: version bumped because module is considered mature.
v0.4.2 2020-09-10 12:52:53+01:00 Europe/London
[Documentation]
- Added INSTALL file to the distribution.
- Updated copyright year.
[Toolchain]
- Added keywords to distribution metadata.
- Tweaks to dist.ini for simplifying build.
- Include core modules in prerequisites.
v0.4.1 2018-05-08 16:14:23+01:00 Europe/London
[Bug Fixes]
- Use local variable for regex capture.
[Enhancements]
- Improve type checking.
v0.4.0 2018-05-02 20:42:40+01:00 Europe/London
[Enhancements]
- Enable strictures.
- Simplified the enum generation code, and added the ability to
specify a custom incrementing function.
- Check values against types.
- Miscellaneous improvements to the import method.
[Documentation]
- Added note about support for older Perl versions.
[Tests]
- Remove unnecessary compilation test.
- Add tests for const export.
- Added better tests for enums.
[Toolchain]
- Remove core and redundant prerequisites.
- Update module metadata.
v0.3.1 2018-01-16 23:41:07+00:00 Europe/London
[Enhancements]
- Check for arrayrefs instead of unblessed arrayrefs.
- Export coderefs as well as constants.
- Add Const::Fast::const to @EXPORT_OK.
[Bug Fixes]
- Remove unnecessary test dependencies.
- Add missing developer dependency for Test::Warnings.
v0.3.0 2018-01-16 00:45:52+00:00 Europe/London
[Enhancements]
- Switch to use Ref::Util.
[Documentation]
- Added note about dependencies.
- Add example for dynamically creating constants at runtime, #4
(B. Estrade).
- Fixed typos (B. Estrade).
- Mention Const::Fast::Exporter in SEE ALSO, #13.
- Remove note about dependencies.
- Reformat Changes document.
[Toolchain]
- Update distribution to use Dist::Zilla and POD::Weaver.
v0.2.4 2015-01-08
- No functional changes.
[Documentation]
- Bumped copyright year.
[Incompatabilities]
- Bumped minimum Perl version to v5.10.1.
[Other Changes]
- Removed version from version, to workaround the issue where
Carton thinks v0.9909 < v0.77 (which is the version included
w/Perl v5.10.1 anyway).
v0.2.3 2014-08-16
[Other Changes]
- MANIFEST.SKIP updated to ignore .travis.yml.
- Fixed license in Makefile.PL to make CPANTS happy.
v0.2.2 2014-06-24
[Documentation]
- Added testing requirements to README.
[Other Changes]
- Test::Warnings is only used if the RELEASE_TESTING variable
is set.
v0.2.1 2014-06-04
[Documentation]
- Corrected typos in POD.
- Added requirements to README.
- Reformatted Changes.
v0.2.0 2014-05-29
[Bug Fixes]
- Bug Fix: scalar constants can have blessed values.
[Documentation]
- Fixed typos in POD and Changes file.
- Fixed formatting of Changes file.
- Cleaned up details from README using Pod::Readme.
[Other Changes]
- Updated MANIFEST.SKIP.
- Perltidied source code.
- Added QA tests to the git repo.
- Removed unnecessary dependency from Makefile.PL.
v0.1.2 2014-02-24
- Import dies if given the tag "all", since it's reserved.
- Various documentation improvements.
- Code cleanup.
v0.1.1 2014-02-23
- Added missing Changes and MANIFEST.SKIP files.
- Added additional modules to SEE ALSO section.
- Updated README.
v0.1.0 2014-02-23
- First public release of Const::Exporter.