Skip to content

Commit

Permalink
Update website for json 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Aug 27, 2024
1 parent ef2afb8 commit 4c655d5
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 12 deletions.
6 changes: 3 additions & 3 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ SetPackageInfo( rec(

PackageName := "json",
Subtitle := "Reading and Writing JSON",
Version := "2.2.1",
Date := "24/04/2024", # dd/mm/yyyy format
Version := "2.2.2",
Date := "27/08/2024", # dd/mm/yyyy format
License := "BSD-2-Clause",

Persons := [
Expand Down Expand Up @@ -76,7 +76,7 @@ Dependencies := rec(
),

AvailabilityTest := function()
if Filename(DirectoriesPackagePrograms("json"), "json.so") = fail then
if IsKernelExtensionAvailable("json") = false then
LogPackageLoadingMessage( PACKAGE_WARNING,
[ "kernel functions for json are not available." ] );
return false;
Expand Down
21 changes: 21 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,21 @@ types, look at the openmath package, or IO_Pickle in the IO package.
Updates
=======

v2.2.2
======

Use up-to-date methods of loading packages in GAP

2.2.1
=====

Internal cleanups for new GAP versions

2.2.0
=====

Speed up outputting JSON, add new tests

v2.1.1
======

Expand All @@ -41,3 +56,9 @@ v2.0.0
The Json package now ensures it only outputs valid UTF8. GAP strings which
contain valid UTF8 are outputted unmodified, invalid UTF8 is treated as Latin-1,
and transformed into valid UTF8.


1.2.0 : Fix compiling in recent versions of XCode on Mac OS X
1.1.0 : Fix bug in handling badly formatted integers
1.0.1 : Fix bug in nested structures
1.0.0 : First release
6 changes: 3 additions & 3 deletions _data/package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: json
version: 2.2.1
date: 2024-04-24
version: 2.2.2
date: 2024-08-27
description: |
Reading and Writing JSON
Expand All @@ -25,7 +25,7 @@ packageinfo: https://gap-packages.github.io/json/PackageInfo.g

downloads:
- name: .tar.gz
url: https://github.com/gap-packages/json/releases/download/v2.2.1/json-2.2.1.tar.gz
url: https://github.com/gap-packages/json/releases/download/v2.2.2/json-2.2.2.tar.gz

abstract: |
Expand Down
4 changes: 2 additions & 2 deletions doc/chap0.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ <h1>json</h1>
<h2>Reading and Writing JSON</h2>

<p>
2.2.1</p>
2.2.2</p>

<p>
24 April 2024
27 August 2024
</p>

</div>
Expand Down
4 changes: 2 additions & 2 deletions doc/chap0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
 Reading and Writing JSON 


2.2.1
2.2.2


24 April 2024
27 August 2024


Christopher Jefferson
Expand Down
4 changes: 2 additions & 2 deletions doc/chap0_mj.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ <h1>json</h1>
<h2>Reading and Writing JSON</h2>

<p>
2.2.1</p>
2.2.2</p>

<p>
24 April 2024
27 August 2024
</p>

</div>
Expand Down

0 comments on commit 4c655d5

Please sign in to comment.