Skip to content

Commit

Permalink
2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dangmai committed Oct 8, 2024
1 parent c0e5c5d commit 7572d73
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.4",
"version": "2.1.5",
"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.4",
"version": "2.1.5",
"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 @@ -278,7 +278,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.4";
const version = "2.1.5";
const filename = `apex-ast-serializer-${version}-${platform}-${arch}${platform === "win32" ? ".exe" : ""}`;
const serializerBin = await getSerializerBinDirectory();
const executableBin = nodePath.relative(
Expand Down

0 comments on commit 7572d73

Please sign in to comment.