Skip to content

Commit

Permalink
docs: update changelog.md
Browse files Browse the repository at this point in the history
  • Loading branch information
aristotelesbr committed Feb 8, 2024
1 parent 5a5b517 commit 90bf767
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,31 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.4.1] - 2024-08-02

### Change

- Change behavior of `Lennarb::ApplicationBase` class to be the base class of the `Lennarb` class. Now, the `Lennarb` class is a subclass of `Lennarb::ApplicationBase` class.

That permits to create a new application with the `Lennarb::ApplicationBase` class and use http methods to create the routes. Ex.

```rb
# app.rb

require 'lennarb'

class MyApp < Lennarb::ApplicationBase
get '/hello' do |req, res|
res.html('Hello World')
end
end
```

### Removed

- Remove `Lennarb::Application` module from the project. Now, the `Lennarb` class is the main class of the project.


## [0.4.0] - 2024-07-02

### Added
Expand Down

0 comments on commit 90bf767

Please sign in to comment.