flywind
8a6c5edc43
use release version ( #15400 )
2020-09-24 14:14:23 +02:00
flywind
e85c5ad379
fix #15333 ( #15336 )
2020-09-24 08:54:13 +02:00
genotrance
7a6f4eca19
Bump nimble ( #15398 )
2020-09-24 08:07:32 +02:00
cooldome
f21a49b2c4
Fix #15389 ( #15390 )
...
* allow result symbol reuse
* try different approach
* Revert "try different approach"
This reverts commit abcfb6b759 .
2020-09-24 00:07:30 +01:00
Miran
fe3211fbcf
fix the indentation in --help and --fullhelp ( #15387 )
...
* fix the indentation in `--help` and `--fullhelp`
* a better way to fix it
2020-09-23 12:44:41 +02:00
Araq
94c8d53a03
'koch temp' bugfix
2020-09-23 10:41:33 +02:00
Andreas Rumpf
e2d80b15a6
finish the stacktraces.nim implementation [backport:1.2] ( #15393 )
2020-09-23 10:01:52 +02:00
Clyybber
4b9eea2fcc
Fix forward declarations in shadow scope contexts ( #15386 )
...
* Fix forward declarations in shadow scope contexts
* Add testcase for #15385
* Less empty lines
* Fix tests
* Inline isShadowScope
* Add original testcase (with reduced amount of iterations)
* Add testcase without forward decl
2020-09-22 18:24:13 +02:00
Miran
11c377c114
add enumerate macro ( #15297 )
...
* add `enumerate` macro
* address the comments
* put `enumerate` in its own module
2020-09-22 13:08:36 +02:00
flywind
ab05e141c0
deinitLock ( #15383 )
...
* deinitLock
* minor
2020-09-22 13:07:31 +02:00
Andreas Rumpf
1fae66e4df
better nativestacktrace support; refs #15284 ; backport [1.2] ( #15384 )
...
* nimStackTraceOverride: enable stack traces in exceptions
This is a two-step stack trace collection scheme, because re-raised
exceptions will collect multiple stack traces but use them rarely, when
printing info about an uncaught exception, so it makes sense to only do
the cheap stack unwinding all the time and the relatively expensive
debugging information collection on-demand.
`asyncfutures` implements its own `$` proc for printing
`seq[StackTraceEntry]`, so we have to add the debugging info there, just
like we do for the private `$` proc in `system/excpt`.
* cleaned up PR #15284
Co-authored-by: Ștefan Talpalaru <stefantalpalaru@yahoo.com >
2020-09-22 13:03:24 +02:00
Clyybber
d67c5cb751
Add strutils.indentation and make unindent use it ( #15264 )
...
* Add strutils.indentation and make unindent use it
* Code style
* Fix bootstrapping
* Improve wording
* Fix test
* Introduce without breaking change
* Fix
* Reduce diff
* Fix docs link
* Add since annotation
* Update changelog
2020-09-22 10:43:12 +02:00
alaviss
aca9c5fb30
os: make getApplFreebsd available for NetBSD ( #15381 )
...
NetBSD was switched to getApplFreebsd() in #15359 , however the proc was
not made available for the said target.
This commit exposes `getApplFreebsd()` to NetBSD.
2020-09-21 19:52:44 +02:00
genotrance
8f511fd0e6
Bump nimble ( #15380 )
2020-09-21 11:48:00 -05:00
Miran
4645183272
fix #6430 , support :target: for images ( #15379 )
2020-09-21 17:01:12 +02:00
flywind
40a868bccc
add testcase for #6060 ( #15366 )
...
* add testcase for #6060
* Remove overspecific testament spec
Co-authored-by: Clyybber <darkmine956@gmail.com >
2020-09-21 13:37:14 +02:00
flywind
6c83eb48c2
add testcase for #7165 ( #15368 )
...
* add testcase for #7165
* Remove overspecific testament spec
Co-authored-by: Clyybber <darkmine956@gmail.com >
2020-09-21 13:32:05 +02:00
Juan Carlos
db9ab2a4c0
Documentation prelude ( #15377 )
2020-09-21 12:37:14 +02:00
Andreas Rumpf
c2434d939e
fixes #15360 [backport:1.2] ( #15378 )
2020-09-21 12:35:23 +02:00
flywind
0a1e4cad7f
add testcase for #9710 ( #15365 )
...
* string is not nil anymore
* tatus
2020-09-21 12:21:05 +02:00
Andreas Rumpf
4d75059e8b
added a basic ORC test I still had lying around ( #15376 )
2020-09-20 22:47:48 +02:00
Andreas Rumpf
04cecdf9c2
async: removed the 'unown' references, async never worked with --newruntime anyway and --newruntime is dead ( #15374 )
2020-09-20 18:01:07 +02:00
Araq
cdac67376c
arc: added tmarshal.nim test case
2020-09-20 10:43:57 +02:00
Araq
33be7c6f5e
arc: =deepcopy fixes
2020-09-20 10:43:57 +02:00
Andreas Rumpf
ebb632ccba
fixes #15369 ( #15371 )
2020-09-20 01:07:13 +02:00
Andreas Rumpf
a15d77df7e
ORC/ARC async progress ( #15370 )
...
* ARC/ORC: fixes memory leak for empty seqs that have a non-zero capacity
* async: minor refactorings
* it helps to finish a refactoring
2020-09-20 00:27:32 +02:00
Andreas Rumpf
cbdda631db
base64: fixes the error message for an invalid base64 input character [backport:1.2]
2020-09-20 00:05:41 +02:00
Andreas Rumpf
9a34009f00
ORC and stdlib optimizations ( #15362 )
2020-09-19 00:27:43 +02:00
Timothee Cour
8ae4a774b7
doc fix typo in lib/pure/httpclient.nim ( #15364 )
2020-09-19 00:20:41 +02:00
Euan
ae1f5c1559
Use sysctl on NetBSD to get exe name ( #15359 )
2020-09-18 22:26:53 +02:00
yatsen1
341cd844b2
fix coro proc crash for stack problem when run long enough than a GC cycle ( #7612 ) ( #11410 )
...
Co-authored-by: drswinghead <drswinghead@gmail.com >
Co-authored-by: Clyybber <darkmine956@gmail.com >
2020-09-18 17:17:09 +02:00
Andreas Rumpf
d19316bbb9
more ORC bugfixes ( #15355 )
...
* introduced --define:nimArcIds
* ORC: bugfixes
2020-09-18 11:55:58 +02:00
narimiran
59b7857167
bump NimVersion to 1.3.7
2020-09-18 11:50:15 +02:00
Andreas Rumpf
2671efab78
async: minor refactorings ( #15354 )
2020-09-18 11:22:34 +02:00
jcosborn
e56d50d747
fix infinite recursion in typeRel ( #15241 )
...
* fix generic constraints
Co-authored-by: James Osborn <osborn@Jamess-MacBook-Pro.local >
2020-09-18 11:21:37 +02:00
flywind
c57023f324
string is not nil anymore ( #15352 )
2020-09-18 10:02:31 +02:00
Miran
cbd78ec1f6
close #6071 , remove the mentions of deprecated docSeeSrcUrl ( #15350 )
2020-09-17 19:55:18 +02:00
Andreas Rumpf
bc9967f05a
Revert "Introduce explicit copy ( #15330 )" ( #15346 )
...
This reverts commit a3e9cc5234 .
2020-09-16 23:24:17 +02:00
cooldome
d938c6411e
fix #15326 ( #15341 )
2020-09-16 21:37:23 +02:00
Juan Carlos
913ffbb92d
Add documentation for Testament ( #15344 )
2020-09-16 21:31:35 +02:00
Yuriy Glukhov
28a64869f0
Fixed undeclared nimIdentNormalize compilation error in parseEnum ( #15343 )
2020-09-16 19:41:57 +02:00
Andreas Rumpf
8b66412a8b
fixes #9754 [backport] ( #15342 )
2020-09-16 19:41:14 +02:00
cooldome
341be0b61c
proc params as syms ( #15332 )
...
* proc params are now syms
* Fix typesrenderer
* Add testcase for disrupteks issue
* fix test
* Trigger build
* Trigger build
* Trigger build
Co-authored-by: Clyybber <darkmine956@gmail.com >
2020-09-16 17:25:24 +01:00
cooldome
a3e9cc5234
Introduce explicit copy ( #15330 )
2020-09-16 17:26:45 +02:00
Andreas Rumpf
ae4ede6b00
fixes #15325 ( #15340 )
2020-09-16 17:26:13 +02:00
flywind
de7f2372be
docs minor and #15335 ( #15337 )
2020-09-16 14:58:50 +02:00
Andreas Rumpf
fd31e8ff6f
allow old styled RTTI for arc/orc ( #15331 )
2020-09-16 14:57:01 +02:00
flywind
0aaf4e2dfa
Methods docs improvement ( #15338 )
...
* docs improvement
* minor
2020-09-16 14:51:01 +02:00
Andreas Rumpf
bc179ccc3f
fixes #15076 ( #15329 )
2020-09-15 12:40:23 +02:00
Juan Carlos
073bea6606
Remove Deprecated {.this:self.} from Documentation so people dont use it anymore ( #15328 )
2020-09-15 11:59:33 +02:00