From 6280704e377e55b89aa5125942cc710b5e73209e Mon Sep 17 00:00:00 2001 From: Marek Sedlacek Date: Sat, 14 May 2022 16:44:15 +0200 Subject: [PATCH] Version 1.0.0 --- docs/Doxyfile | 2 +- ebe.hpp | 6 +++--- readme.md | 10 ++++++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/docs/Doxyfile b/docs/Doxyfile index ff3903f..7998657 100644 --- a/docs/Doxyfile +++ b/docs/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "Ebe" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = "0.3" +PROJECT_NUMBER = "1.0" # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/ebe.hpp b/ebe.hpp index a92d6fb..e6509b1 100644 --- a/ebe.hpp +++ b/ebe.hpp @@ -17,9 +17,9 @@ /** Macro to convert INT macro value into string value */ #define MACRO_TO_STR(x) MACRO_TO_STR_HELPER(x) -#define EBE_VERSION_MAJOR 0 ///< Compiler's major version -#define EBE_VERSION_MINOR 3 ///< Compiler's minor version -#define EBE_VERSION_PATCH 1 ///< Compiler's patch +#define EBE_VERSION_MAJOR 1 ///< Compiler's major version +#define EBE_VERSION_MINOR 0 ///< Compiler's minor version +#define EBE_VERSION_PATCH 0 ///< Compiler's patch /** Ebe version as a string */ #define EBE_VERSION MACRO_TO_STR(EBE_VERSION_MAJOR) "." MACRO_TO_STR(EBE_VERSION_MINOR) "." MACRO_TO_STR(EBE_VERSION_PATCH) diff --git a/readme.md b/readme.md index 2877f3c..ad099b7 100644 --- a/readme.md +++ b/readme.md @@ -316,11 +316,17 @@ Other information can be found in Ebe's [GitHub wiki](https://github.com/mark-se Tools for advanced work and analysis of Ebe can be found in its own [repository](https://github.com/mark-sed/ebe-tools). +# Bee language + +There is also another project, which uses Ebe. It's the Bee language and its compiler. The language is designed for file editing, compiles down to Ebel and aims to allow for quick file edits done by one line scripts. + +Bee-hs compiler can be previewed in its own [GitHub repository](https://github.com/mark-sed/bee-hs). + # Contributing -Contributions are not open until version 1.0. +Contributions to the code base are/will be available from August 2022. -Any bug reports or feature requests are more than welcome, for this please use the [issues](https://github.com/mark-sed/ebe/issues) section on GitHub. +Also any bug reports or feature requests are more than welcome, for this please use the [issues](https://github.com/mark-sed/ebe/issues) section on GitHub. # Feedback