Skip to content

Commit e407872

Browse files
Merge pull request #18 from apex-dev-tools/release-3.1.0
Release v3.1.0
2 parents adc0108 + 23ef6aa commit e407872

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
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.

jvm/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>io.github.apex-dev-tools</groupId>
66
<artifactId>apex-parser</artifactId>
7-
<version>3.0.0</version>
7+
<version>3.1.0</version>
88
<packaging>jar</packaging>
99

1010
<name>apex-parser</name>

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-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

npm/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@apexdevtools/apex-parser",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"author": "Apex Dev Tools Team <[email protected]> (https://github.com/apex-dev-tools)",
55
"bugs": "https://github.com/apex-dev-tools/apex-parser/issues",
66
"description": "Javascript parser for Salesforce Apex Language",
@@ -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)