Skip to content

Commit 4d13fa9

Browse files
committed
Merge branch 'release/2.1.2'
Release v2.1.2
2 parents dfcf4ba + 6d2bcba commit 4d13fa9

8 files changed

+24
-18
lines changed

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# MIT License
22

3-
**Copyright (c) 2020 Peter Johnson (https://en.gravatar.com/delphidabbler)**
3+
**Copyright (c) 2020-2023 Peter Johnson (https://en.gravatar.com/delphidabbler)**
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
66

csdb/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ From v2.0.0 all notable changes to this project will be documented in this file.
88
99
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
1010

11+
## v2.1.2 of 2023/07/15
12+
13+
* Fixed simple errors and oversights in documentation. Fixes issues [#9](https://github.com/delphidabbler/code-snippets/issues/9) & [#10](https://github.com/delphidabbler/code-snippets/issues/10).
14+
15+
> Other than to update the `VERSION` file there were no changes to any snippets or associated meta-data in this release.
16+
1117
## v2.1.1 of 2021/12/29 (HOTFIX)
1218

1319
* Fixed malformed REML tags. Fixes [issue #7](https://github.com/delphidabbler/code-snippets/issues/7).

csdb/MakeRelease.sh

+7-6
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,24 @@
55
#
66
# Build tool for Windows to package up files ready for release.
77
#
8-
# This file is licensed under the MIT license, copyright © 2020-2021 Peter
8+
# This file is licensed under the MIT license, copyright © 2020-2023 Peter
99
# Johnson, https://gravatar.com/delphidabbler
1010
#
1111
#
12-
# Two packages are made, each in a zip file: one containing the collection and
13-
# the other containing documentation. Both zip files are written to the
14-
# _release sub-folder in the collection's home directory.
12+
# Three packages are made, each in a zip file: one containing the
13+
# collection, another containing documentation and a third containing tests.
14+
# All zip files are written to the _release sub-folder in the collection's
15+
# home directory.
1516
#
1617
# Any pre-existing _release sub-folder is cleared before the zip files are
1718
# created.
1819
#
1920
# Requirements:
2021
#
2122
# - The release version number must be passed to this script as a command
22-
# line.
23+
# line parameter.
2324
#
24-
# - The zip utility is required to zip up the files.
25+
# - The zip utility program is required to zip up the files.
2526
#
2627
# --------------------------------------------------------------------------
2728

csdb/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ The project's change log can be found in `CHANGELOG.md` in the collection's base
4646

4747
## License
4848

49-
All snippets in this collection (stored in `.dat` files in the `collections` directory) are licensed under the MIT license and are copyright © 2005-2020, [Peter Johnson](https://gravatar.com/delphidabbler) and Contributors. The full license and a list of contributors can be found in the `LICENSE` and `CONTRIBUTORS` files in the `collection` sub-directory.
49+
All snippets in this collection (stored in `.dat` files in the `collection` directory) are licensed under the MIT license and are copyright © 2005-2021, [Peter Johnson](https://gravatar.com/delphidabbler) and Contributors. The full license and a list of contributors can be found in the `LICENSE` and `CONTRIBUTORS` files in the `collection` sub-directory.
5050

51-
Certain files in the `tests` directory contain copies of snippets extracted from the collection. These files are identified as such in the comments at the start of the file. The files are licensed under the same license as the `.dat` files in the `collections` directory. See the paragraph above for details.
51+
Certain files in the `tests` directory contain copies of snippets extracted from the collection. These files are identified as such in the comments at the start of the file. The files are licensed under the same license as the `.dat` files in the `collection` directory. See the paragraph above for details.
5252

53-
All other files in this project are licensed under the MIT license and are copyright © 2020-2021, [Peter Johnson](https://gravatar.com/delphidabbler).
53+
All other files in this project are licensed under the MIT license and are copyright © 2020-2023, [Peter Johnson](https://gravatar.com/delphidabbler).

csdb/collection/VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.1
1+
2.1.2

csdb/docs/collection-format.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE HTML>
22

33
<!--
4-
* This file copyright (C) 2020, Peter Johnson (gravatar.com/delphidabbler) and
5-
* is licensed under the MIT License: https://opensource.org/licenses/MIT
4+
* This file copyright (C) 2020-2023, Peter Johnson (gravatar.com/delphidabbler)
5+
* and is licensed under the MIT License: https://opensource.org/licenses/MIT
66
*
77
* DelphiDabbler Code Snippets Database Documentation: Collection file format
88
* documentation.

csdb/docs/index.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<!DOCTYPE HTML>
22

33
<!--
4-
* This file copyright (C) 2020-2021, Peter Johnson (gravatar.com/delphidabbler)
4+
* This file copyright (C) 2020-2023, Peter Johnson (gravatar.com/delphidabbler)
55
* and is licensed under the MIT License: https://opensource.org/licenses/MIT
66
*
7-
* DelphiDabbler Code Snippets Database Documentation: REML markup language
8-
* documentation.
7+
* DelphiDabbler Code Snippets Database Documentation: Index page
98
-->
109
<html lang="en">
1110

csdb/docs/reml.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!DOCTYPE HTML>
22

33
<!--
4-
* This file copyright (C) 2020, Peter Johnson (gravatar.com/delphidabbler) and
5-
* is licensed under the MIT License: https://opensource.org/licenses/MIT
4+
* This file copyright (C) 2020-2023, Peter Johnson (gravatar.com/delphidabbler)
5+
* and is licensed under the MIT License: https://opensource.org/licenses/MIT
66
*
77
* DelphiDabbler Code Snippets Database Documentation: REML markup language
88
* documentation.

0 commit comments

Comments
 (0)