Skip to content

Releases: sillsdev/scripture

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

v1.2.0

08 Jul 08:50
0870eb4

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.1.2...v1.2.0

v1.1.2

03 Jul 07:03

Choose a tag to compare

Full Changelog: v1.1.1...v1.1.2

v1.1.1

03 Jul 06:59

Choose a tag to compare

Full Changelog: v1.1.0...v1.1.1

Package for CommonJS as well as ESM

30 Jun 04:55

Choose a tag to compare