diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 50737709..71bed4d7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -27,7 +27,7 @@ If applicable, add screenshots to help explain your problem. - CPU Architecture: [e.g. `x86_64`] - Operating System - Distro : Version/Build: [e.g. `Linux - Ubuntu : 18.04`] - C Compiler Name and Version [e.g. `gcc (Ubuntu 7.4.0-1ubuntu1~18.04.1) 7.4.0`] - - Chaos Language Version [e.g. `Chaos Language 0.0.1-alpha (Dec 23 2019 04:18:23)`] + - Chaos Language Version [e.g. `Chaos Language 0.1.0 (Nov 30 2020 04:39:36)`] **Additional context** Add any other context about the problem here. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index b97b1edd..9235daaa 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -87,8 +87,8 @@ Type "apropos word" to search for commands related to "word". Reading symbols from chaos...done. (gdb) run Starting program: /home/mertyildiran/Documents/chaos/chaos - Chaos Language 0.0.1-alpha (Dec 26 2019 02:37:16) - GCC version: 7.4.0 on linux + Chaos Language 0.1.0 (Nov 30 2020 04:39:36) + GCC version: 9.3.0 on linux Turn chaos into magic! kaos> list a = [1, 2, 3] @@ -113,7 +113,7 @@ the parsing and execution order using the Abstract Syntax Tree (AST): ``` $ chaos -d - Chaos Language 0.0.1-alpha (Aug 16 2020 21:18:05) + Chaos Language 0.1.0 (Nov 30 2020 04:39:36) GCC version: 9.3.0 on linux Turn chaos into magic! diff --git a/README.md b/README.md index 11ed7b87..5ce98351 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,7 @@ make install ```shell $ chaos - Chaos Language 0.0.1-alpha (Sep 18 2020 03:03:40) + Chaos Language 0.1.0 (Nov 30 2020 04:39:36) GCC version: 9.3.0 on linux Turn chaos into magic! diff --git a/utilities/language.h b/utilities/language.h index 7534660b..261026aa 100644 --- a/utilities/language.h +++ b/utilities/language.h @@ -24,7 +24,7 @@ #define KAOS_LANGUAGE_H #define __KAOS_LANGUAGE_NAME__ "Chaos" -#define __KAOS_LANGUAGE_VERSION__ "0.0.1-alpha" +#define __KAOS_LANGUAGE_VERSION__ "0.1.0" #define __KAOS_LANGUAGE_FILE_EXTENSION__ "kaos" #define __KAOS_LANGUAGE_MOTTO__ "Turn chaos into magic!" #define __KAOS_LANGUAGE_KEYWORD_COUNT__ 33