summary refs log tree commit diff stats
path: root/changelog.md
Commit message (Expand)AuthorAgeFilesLines
* Support for stmtListExpr in parser after major keywords. Scaled down version....cooldome2019-03-181-0/+10
* multi-methods need to be explicitly enabled (#10856)Miran2019-03-181-4/+19
* added system.default in order to prevent the abstraction inversion that 'temp...Andreas Rumpf2019-03-051-0/+1
* Improved posix module, added new posix_utils module (#10723)Federico Ceratto2019-02-281-0/+1
* Initial version of the hot-code reloading support for native targets (#10729)zah2019-02-261-1/+9
* Tuple unpacking now works for `for` vars (#10152)Neelesh Chandola2019-02-231-0/+1
* Add summation algorithms (#9284)b3liever2019-02-131-0/+3
* Add a standard Rusage type definition and wait4, getrusage declarations (#10484)c-blake2019-01-291-0/+2
* Improve exception tracking in the streams module (#10453)Oscar Nihlgård2019-01-281-0/+2
* better docs: xmltreenarimiran2019-01-241-0/+2
* Improve exception usage in parseutils (#10284)Oscar Nihlgård2019-01-151-0/+2
* revert moving `oids` and `smtp` to graveyardnarimiran2019-01-111-2/+3
* update changelognarimiran2019-01-101-3/+20
* ValueError now inherits from CatchableError (#10246)Oscar Nihlgård2019-01-101-1/+3
* [nimpretty] fix #10211; fix #10199 (#10212)Timothee Cour2019-01-081-0/+2
* add custom pragma support for var and let symbols (#9582)jcosborn2019-01-071-4/+6
* Add changelog for the isNil JavaScript change (#10184)Alexander Ivanov2019-01-071-0/+2
* Pragma syntax is now consistent (#9993)Neelesh Chandola2018-12-271-0/+6
* add to changelogTimothee Cour2018-12-191-0/+2
* add `getCurrentCompilerExe` to vmops (eg allows to get nim compiler at CT); a...Timothee Cour2018-12-181-0/+3
* document the change for fix #9978Andreas Rumpf2018-12-141-0/+3
* added parseopt.remainingArgs; refs #9951Araq2018-12-141-0/+1
* os.nim: use the new pathnorm.normalizePath implementationAraq2018-12-141-0/+3
* os.nim: big refactoring, use the new pathnorm that was extracted by compiler/...Araq2018-12-131-0/+2
* fix merge conflictAraq2018-12-121-2/+2
|\
| * Merge branch 'devel' into sorted_deduplicateAndreas Rumpf2018-12-121-0/+26
| |\
| * | Add the parameter isSorted for the sequtils.deduplicatedata-man2018-12-071-0/+1
* | | move diff.nim to experimentalAraq2018-12-121-1/+1
| |/ |/|
* | added diff.nim to the stdlibAraq2018-12-121-0/+3
* | Merge pull request #9937 from cooldome/pragmablock_custom_pragmaAndreas Rumpf2018-12-121-0/+3
|\ \
| * | Add changelog itemAndrii Riabushenko2018-12-111-0/+3
* | | Rework nil/option for nre in light of ""==nilFlaviu Tamas2018-12-111-0/+19
|/ /
* / Make options.UnpackError inherit from system.DefectOscar Nihlgård2018-12-081-0/+2
|/
* Merge pull request #9846 from timotheecour/pr_getpidAndreas Rumpf2018-12-051-0/+1
|\
| * address commentsTimothee Cour2018-12-041-1/+1
| * fixupTimothee Cour2018-12-031-0/+1
* | Update changelogdata-man2018-12-041-0/+1
|/
* new minor language feature: .noSideEffect blocks like .gcsafe blocksAndreas Rumpf2018-11-271-1/+2
* document the breaking change for osprocAndreas Rumpf2018-11-261-1/+2
* Add isInstanceOf for generic procs to the macros module (#9730)cooldome2018-11-211-0/+4
* fix #9647 tmpl=>nimf (#9658)Timothee Cour2018-11-141-0/+5
* deprecated ospaths (#9665)Andreas Rumpf2018-11-091-0/+4
* fixes #9619Andreas Rumpf2018-11-091-0/+5
* changelog entry.Arne Döring2018-11-081-0/+2
* add new stdlib modules to the changelogAraq2018-11-081-1/+4
* parser change: 'not' is always a unary operator; fixes #9574Andreas Rumpf2018-11-071-0/+2
* compiler cleanup: flag tfOldSchoolExprStmt is goneAraq2018-11-061-1/+2
* removed the undocumented #? strongSpaces parsing modeAraq2018-11-061-0/+1
* document system.UncheckedArrayAraq2018-11-061-0/+3
* Generic Complex type (#9590)Arne Döring2018-11-051-1/+4
4'>614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950