Skip to content

Releases: gongo/json-reformat

0.0.7

05 Sep 23:46
e9999b1
Compare
Choose a tag to compare

IMPROVEMENTS

  • Mark custom variables as safe for local variables [GH-29]
  • Replace deprecated 'cl package by 'cl-lib [GH-42]

0.0.6

04 Dec 17:05
Compare
Choose a tag to compare

FEATURES

  • Add function json-reformat-from-strong

    (json-reformat-from-string "{\"foo\": 3,\"bar\":    4}")
    ;; "{
    ;;     \"foo\": 3,
    ;;     \"bar\": 4
    ;; }"

0.0.5

08 Oct 00:37
Compare
Choose a tag to compare

IMPROVEMENTS

  • To pre-check of whether buffer read-only [GH-27]

    If the buffer is read-only, error is signaled

0.0.4

30 Sep 07:25
Compare
Choose a tag to compare

BUG FIXES

  • Change empty hash {} to null [GH-23] [GH-24]

    before:

    {"test":{}}
    
      => {
             "test": null
         }
    

    after:

    {"test":{}}
    
      => {
             "test": {
             }
         }
    

0.0.3

07 Apr 00:06
Compare
Choose a tag to compare

IMPROVEMENTS

  • Display the error information when occurs JSON parse error [GH-19] [GH-20]

CHANGE REQUESTS

  • Keep escaped backslash and double quote whether json-reformat:pretty-string? is t or not. [GH-17] [GH-18]
    • Until version 0.0.2, double quote only.

0.0.2

11 Dec 00:58
Compare
Choose a tag to compare

Add option json-reformat:pretty-string?

see GH-12 GH-13

0.0.1

11 Dec 00:57
Compare
Choose a tag to compare

release!