Skip to content

Commit

Permalink
Update version to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
somewhatabstract committed Jun 8, 2021
1 parent 82fd824 commit 3577440
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "checksync",
"version": "2.2.3",
"version": "2.3.0",
"description": "A tool that allows code to be annotated across different files to ensure they remain in sync.",
"main": "dist/cli.js",
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/__snapshots__/cli_test.js.snap
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`#run should log help info if help arg present 1`] = `
"[1m[32mchecksync 2.2.3 ✅ 🔗[39m[22m
"[1m[32mchecksync 2.3.0 ✅ 🔗[39m[22m
Checksync uses tags in your files to identify blocks that need to remain
synchronised. It works on any text file as long as it can find the tags.
Expand Down
24 changes: 12 additions & 12 deletions src/__tests__/__snapshots__/integration_test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ exports[
`Integration Tests should report example checksums_need_updating to match snapshot with json 1`
] = `
"{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": [
{
Expand Down Expand Up @@ -105,7 +105,7 @@ exports[
] = `
" ERROR __examples__/content_after_start/c.js:5 Sync-start for 'content_after_start' found after content started
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": [
{
Expand Down Expand Up @@ -163,7 +163,7 @@ exports[
`Integration Tests should report example correct_checksums to match snapshot with json 1`
] = `
"{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": []
}"
Expand All @@ -190,7 +190,7 @@ exports[
] = `
" ERROR __examples__/directory_target/example.js:3 Sync-start for 'directory_target' points to '__examples__/directory_target/a_directory', which does not exist or is a directory
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": []
}"
Expand All @@ -216,7 +216,7 @@ exports[
] = `
" WARNING __examples__/end_with_no_start/example.js:5 Sync-end for 'end_with_no_start' found, but there was no corresponding sync-start
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": []
}"
Expand Down Expand Up @@ -267,7 +267,7 @@ exports[
ERROR __examples__/malformed_end/malformed_noid.js:7 Malformed sync-end: format should be 'sync-end:<label>'
ERROR __examples__/malformed_end/malformed_noid.js:4 Sync-start 'tagid' has no corresponding sync-end
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": []
}"
Expand Down Expand Up @@ -309,7 +309,7 @@ exports[
ERROR __examples__/malformed_start/malformed_onlytagid.js:4 Malformed sync-start: format should be 'sync-start:<label> [checksum] <filename> <optional_comment_end>'
WARNING __examples__/malformed_start/malformed_onlytagid.js:7 Sync-end for 'tagid' found, but there was no corresponding sync-start
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": []
}"
Expand All @@ -336,7 +336,7 @@ exports[
] = `
" ERROR __examples__/missing_target/example.js:3 Sync-start for 'missing_target' points to '__examples__/missing_target/missing_target.py', which does not exist or is a directory
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": []
}"
Expand Down Expand Up @@ -369,7 +369,7 @@ exports[
`Integration Tests should report example no_back_reference to match snapshot with json 1`
] = `
"{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": [
{
Expand Down Expand Up @@ -411,7 +411,7 @@ exports[
`Integration Tests should report example no_checksums to match snapshot with json 1`
] = `
"{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": [
{
Expand Down Expand Up @@ -462,7 +462,7 @@ exports[
] = `
" ERROR __examples__/no_self_reference/example.js:3 Sync-tag 'example_three' cannot target itself
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": [
{
Expand Down Expand Up @@ -504,7 +504,7 @@ exports[
] = `
" ERROR __examples__/unterminated_marker/example_two-b.py:3 Sync-start 'example_two' has no corresponding sync-end
{
\\"version\\": \\"2.2.3\\",
\\"version\\": \\"2.3.0\\",
\\"launchString\\": \\"checksync\\",
\\"items\\": [
{
Expand Down

0 comments on commit 3577440

Please sign in to comment.