Skip to content

Commit

Permalink
2.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dangmai committed Apr 23, 2024
1 parent fef6765 commit fe64994
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monorepo-prettier-plugin-apex",
"version": "2.1.1",
"version": "2.1.2",
"description": "Monorepo for the Prettier Apex project",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-plugin-apex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier-plugin-apex",
"version": "2.1.1",
"version": "2.1.2",
"description": "Salesforce Apex plugin for Prettier",
"type": "module",
"exports": "./dist/src/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/prettier-plugin-apex/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ interface NativeExecutable {
export async function getNativeExecutable(): Promise<NativeExecutable> {
const { arch, platform } = process;
// This will be bumped automatically when we run the release script for new versions
const version = "2.1.1";
const version = "2.1.2";
const filename = `apex-ast-serializer-${version}-${platform}-${arch}${platform === "win32" ? ".exe" : ""}`;
const serializerBin = await getSerializerBinDirectory();
return {
Expand Down

0 comments on commit fe64994

Please sign in to comment.