Skip to content

Commit

Permalink
Updated roadmap
Browse files Browse the repository at this point in the history
  • Loading branch information
Hadeweka committed Nov 14, 2020
1 parent 624c312 commit 9bca840
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 23 deletions.
48 changes: 25 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,30 @@ The term 'anyoli' means 'green' in the Maasai language, thus naming 'anyolite'.

## Releases

### Version 0.4.0

#### Major features

* Easier wrapping of classes and all of their methods and constants
* Annotation to exclude functions from wrapping
* Annotation to specialize functions for wrapping
* Annotation to rename wrapped functions
* Full wrapping of module and class hierarchies

#### Breaking changes

* Function names with operators do not include the operator into the ruby name anymore
* Unified module and class cache

#### Usability

* Documentation updates for the new wrapping routines
* Functions with only an operator in their name can now be wrapped using `MrbWrap::Empty`

#### Bugfixes

* Nested classes and modules can now be wrapped reliably

### Version 0.3.0

#### Features
Expand Down Expand Up @@ -264,29 +288,7 @@ The term 'anyoli' means 'green' in the Maasai language, thus naming 'anyolite'.

## Upcoming releases

### Version 0.4.0

#### Major features

* [X] Easier wrapping of classes and all of their methods and constants
* [X] Annotation to exclude functions from wrapping
* [X] Annotation to specialize functions for wrapping
* [X] Annotation to rename wrapped functions
* [X] Full wrapping of module and class hierarchies

#### Breaking changes

* [X] Function names with operators do not include the operator into the ruby name anymore
* [X] Unified module and class cache

#### Usability

* [X] Documentation updates for the new wrapping routines
* [X] Functions with only an operator in their name can now be wrapped using `MrbWrap::Empty`

#### Bugfixes

* [X] Nested classes and modules can now be wrapped reliably
Curently none planned

### Future updates

Expand Down
3 changes: 3 additions & 0 deletions src/MrbWrap.cr
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ module MrbWrap

# Use this special constant in case of a function to wrap, which has only an operator as a name.
struct Empty
# :nodoc:
def initialize
end
end

# Internal class to hide the `Struct` *T* in a special class
Expand Down

0 comments on commit 9bca840

Please sign in to comment.