Skip to content

Commit

Permalink
chore: bump schemaVersion to 12
Browse files Browse the repository at this point in the history
Related to #847
  • Loading branch information
Skaiir committed Oct 17, 2023
1 parent bf81fbc commit fc0b2b3
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 = 11;
const schemaVersion = 12;

export {
Form,
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 @@ -128,7 +128,7 @@ describe('viewer exports', function() {
it('should expose schemaVersion', function() {
expect(typeof schemaVersion).to.eql('number');

expect(schemaVersion).to.eql(11);
expect(schemaVersion).to.eql(12);
});


Expand Down

0 comments on commit fc0b2b3

Please sign in to comment.