Skip to content

Releases: sillsdev/scripture

v2.0.4

08 Mar 20:56
710d688

Choose a tag to compare

What's Changed

Full Changelog: v2.0.3...v2.0.4

v2.0.3

08 Mar 20:56
a108815

Choose a tag to compare

What's Changed

Full Changelog: v2.0.2...v2.0.3

v2.0.2

08 Mar 20:56
221f837

Choose a tag to compare

What's Changed

Full Changelog: v2.0.1...v2.0.2

v2.0.1

08 Mar 20:54
e0a66e4

Choose a tag to compare

What's Changed

Full Changelog: v2.0.0...v2.0.1

v2.0.0

26 Jun 02:06
209054a

Choose a tag to compare

BREAKING CHANGES

  • The output of JSON.stringify on a VerseRef has changed to be more human readable:

    • before
      const vref = new VerseRef(1, 2, 3, ScrVers.Septuagint);
      console.log(JSON.stringify(vref)); // '{"versification":{"name":"Septuagint","_type":2},"rtlMark":"","_bookNum":1,"_chapterNum":2,"_verseNum":3}'
    • after
      const vref = new VerseRef(1, 2, 3, ScrVers.Septuagint);
      console.log(JSON.stringify(vref)); // '{"book":"GEN","chapterNum":2,"verseNum":3,"versificationStr":"Septuagint"}'
  • Removed deprecated static parse function from VerseRef:

    • before
      const vref = VerseRef.parse('...');
    • after
      const vref = new VerseRef('...');
      // OR
      const { verseRef } = VerseRef.tryParse('...');

What's Changed

Full Changelog: v1.4.3...v2.0.0

v1.4.3

21 Feb 00:12
fa6645d

Choose a tag to compare

What's Changed

Full Changelog: v1.4.2...v1.4.3

v1.4.2

23 Oct 22:12

Choose a tag to compare

What's Changed

Full Changelog: v1.4.1...v1.4.2

v1.4.1

08 Oct 22:16

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.4.0...v1.4.1

v1.4.0

17 Jul 05:02
28e62f8

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3.0...v1.4.0

v1.3.0

14 Jul 08:06
0fb7661

Choose a tag to compare

What's Changed

Full Changelog: v1.2.0...v1.3.0