Skip to content

Commit 6c7861b

Browse files
committed
Bump the package version to 1.2.0 and update package metadata
- Update license format from "MIT License" to "MIT" - Add version 1.2.0 entry to versions list - Rename example files with numbered prefixes for better organization - Rename source file from .c to .cpp extension - Add comprehensive feature examples (JSON patch, merge patch, binary formats, NDJSON, validation, formatting, path queries, file I/O, base64, JSON comments, CSV/TOML conversion) - Include test file in package files
1 parent 798a113 commit 6c7861b

1 file changed

Lines changed: 25 additions & 7 deletions

File tree

package.ring

Lines changed: 25 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,14 @@ aPackageInfo = [
44
:folder = "simplejson",
55
:developer = "ysdragon",
66
:email = "youssefelkholey@gmail.com",
7-
:license = "MIT License",
8-
:version = "1.1.0",
7+
:license = "MIT",
8+
:version = "1.2.0",
99
:ringversion = "1.23",
1010
:versions = [
11+
[
12+
:version = "1.2.0",
13+
:branch = "master"
14+
],
1115
[
1216
:version = "1.1.0",
1317
:branch = "1.1.0"
@@ -25,15 +29,29 @@ aPackageInfo = [
2529
"main.ring",
2630
".clang-format",
2731
"CMakeLists.txt",
28-
"examples/example1.ring",
29-
"examples/example2.ring",
30-
"examples/example3.ring",
32+
"examples/01_basic_decode.ring",
33+
"examples/02_basic_encode.ring",
34+
"examples/03_nested_structures.ring",
35+
"examples/04_json_patch.ring",
36+
"examples/05_merge_patch.ring",
37+
"examples/06_binary_formats.ring",
38+
"examples/07_ndjson.ring",
39+
"examples/08_validation_and_info.ring",
40+
"examples/09_formatting.ring",
41+
"examples/10_object_manipulation.ring",
42+
"examples/11_path_queries.ring",
43+
"examples/12_file_io.ring",
44+
"examples/13_base64.ring",
45+
"examples/14_json_comments.ring",
46+
"examples/15_csv_conversion.ring",
47+
"examples/16_toml_conversion.ring",
3148
"LICENSE",
3249
"README.md",
33-
"src/ring_simplejson.c",
50+
"src/ring_simplejson.cpp",
3451
"src/utils/color.ring",
3552
"src/utils/install.ring",
36-
"src/utils/uninstall.ring"
53+
"src/utils/uninstall.ring",
54+
"tests/simplejson_test.ring"
3755
],
3856
:ringfolderfiles = [
3957

0 commit comments

Comments
 (0)