Skip to content

Commit

Permalink
chore: bump schemaVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
vsgoulart committed Oct 23, 2024
1 parent 08e37e9 commit 82ad5fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/form-js-viewer/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export * from './render';
export * from './util';
export * from './features';

const schemaVersion = 16;
const schemaVersion = 17;

export { Form, schemaVersion };

Expand Down
2 changes: 1 addition & 1 deletion packages/form-js/test/spec/Form.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ describe('viewer exports', function () {
it('should expose schemaVersion', function () {
expect(typeof schemaVersion).to.eql('number');

expect(schemaVersion).to.eql(16);
expect(schemaVersion).to.eql(17);
});

it('should generate unique ID for every instance', async function () {
Expand Down

0 comments on commit 82ad5fb

Please sign in to comment.