diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2019-09-08 18:54:48 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2019-10-02 15:31:27 -0500 |
| commit | 3a2395360712d2c6f27221e0887b7e3cad0be7a1 (patch) | |
| tree | b3a9224d95cd3a2d3033078d1cb94602aeeab9e8 | |
| parent | a867c726a937c3f44219a5264980f6e3ccf789f4 (diff) | |
| download | nimterop-3a2395360712d2c6f27221e0887b7e3cad0be7a1.tar.gz nimterop-3a2395360712d2c6f27221e0887b7e3cad0be7a1.zip | |
Update to v0.2.0
| -rw-r--r-- | nimterop.nimble | 2 | ||||
| -rw-r--r-- | nimterop/getters.nim | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/nimterop.nimble b/nimterop.nimble index 1014e66..565c3e4 100644 --- a/nimterop.nimble +++ b/nimterop.nimble @@ -1,6 +1,6 @@ # Package -version = "0.1.0" +version = "0.2.0" author = "genotrance" description = "C/C++ interop for Nim" license = "MIT" diff --git a/nimterop/getters.nim b/nimterop/getters.nim index 1954623..54040c0 100644 --- a/nimterop/getters.nim +++ b/nimterop/getters.nim @@ -2,7 +2,7 @@ import dynlib, macros, os, sequtils, sets, strformat, strutils, tables, times import regex -import "."/[build, globals, plugin, treesitter/api] +import "."/[build, compat, globals, plugin, treesitter/api] const gReserved = """ addr and as asm @@ -403,6 +403,6 @@ proc loadPlugin*(gState: State, sourcePath: string) = proc expandSymlinkAbs*(path: string): string = try: - result = path.expandSymlink().absolutePath(path.parentDir()).normalizedPath() + result = path.expandSymlink().absolutePath(path.parentDir()).myNormalizedPath() except: result = path |
