Skip to content

Commit f0e6066

Browse files
authored
Bump Deno to 5.26.0 (#1229)
Bump deno to 5.26.0 to prepare for next release. Minor update to versioning script to function better with Windows
1 parent 68214e4 commit f0e6066

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/neo4j-driver-deno/current.version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
* limitations under the License.
1616
*/
1717

18-
export default "5.25.0" // Specified using --version when running generate.ts
18+
export default "5.26.0" // Specified using --version when running generate.ts

packages/neo4j-driver-deno/lib/version.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
* limitations under the License.
1616
*/
1717

18-
export default "5.25.0" // Specified using --version when running generate.ts
18+
export default "5.26.0" // Specified using --version when running generate.ts

packages/neo4j-driver-deno/versioning.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ export async function setVersion (rootOutDir: string, version: string = currentV
1010
);
1111
}
1212

13-
const thisFilePath = join(Deno.cwd(), 'versioning.ts');
14-
if (Deno.mainModule.endsWith(thisFilePath)) {
13+
const thisFilePath = join(Deno.cwd().replace(" ", "%20"), 'versioning.ts');
14+
if (Deno.mainModule.replace(" ", "%20").endsWith(thisFilePath)) {
1515
const parsedArgs = parse(Deno.args, {
1616
string: ["version", "output", 'filename'],
1717
unknown: (arg) => {

0 commit comments

Comments
 (0)