Skip to content

Commit

Permalink
Version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mark-sed committed May 14, 2022
1 parent 682eb81 commit 6280704
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions ebe.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
10 changes: 8 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 6280704

Please sign in to comment.