Skip to content

Commit 23ef6aa

Browse files
chore: Add changelog for latest changes
1 parent fd40bc9 commit 23ef6aa

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# apex-parser - Changelog
2+
3+
## 3.1.0 - 2022-11-17
4+
5+
* Adds DISTANCE and GEOLOCATION literals for SOQL.
6+
* Removes support for modulus operator to match apex.
7+
* Use of `void.class` no longer causes syntax error.
8+
* Now supports newer Date literals from API 55.
9+
10+
## 3.0.0 - 2022-06-14
11+
12+
* Initial github release.

npm/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
README.md
2+
CHANGELOG.md
23
node_modules/
34
lib/

npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"antlr4ts": "npm run antlr-build && npm run antlr-patch",
1111
"antlr-build": "(cd antlr; antlr4ts -visitor -o ../src ApexLexer.g4 ApexParser.g4)",
1212
"antlr-patch": "node patch",
13-
"build": "npm run clean && npm run antlr4ts && cp ../README.md . && tsc",
13+
"build": "npm run clean && npm run antlr4ts && cp ../*.md . && tsc",
1414
"check": "node -e 'require(\"./lib/index.js\").check()'",
1515
"clean": "rm -rf lib",
1616
"test": "jest --config jestconfig.json lib",

0 commit comments

Comments
 (0)