libmodulor 0.6.0 → 0.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.6.1 (2025-02-28)
4
+
5
+ **Fixed**
6
+
7
+ - Create project with the latest version
8
+
3
9
  ## v0.6.0 (2025-02-28)
4
10
 
5
11
  **BREAKING**
package/README.md CHANGED
@@ -27,9 +27,9 @@ Applications created with `libmodulor` have **6 main properties** :
27
27
 
28
28
  ## 🚀 Getting Started
29
29
 
30
- If you're discovering `libmodulor`, we recommend reading the [📖 Introduction](https://github.com/c100k/libmodulor/blob/v0.6.0/docs/Introduction.md) first. It will give you an overview of what `libmodulor` is and how it works.
30
+ If you're discovering `libmodulor`, we recommend reading the [📖 Introduction](https://github.com/c100k/libmodulor/blob/v0.6.1/docs/Introduction.md) first. It will give you an overview of what `libmodulor` is and how it works.
31
31
 
32
- If you want to learn by doing, you can follow the [🚀 Tutorial](https://github.com/c100k/libmodulor/blob/v0.6.0/docs/Tutorial.md). It contains multiple steps showing you the basics of `libmodulor`. We'll build a small Trading app that will allow us to buy an asset from `curl`, a SPA, a CLI, Claude Desktop, an Android mobile app and an iOS mobile app !
32
+ If you want to learn by doing, you can follow the [🚀 Tutorial](https://github.com/c100k/libmodulor/blob/v0.6.1/docs/Tutorial.md). It contains multiple steps showing you the basics of `libmodulor`. We'll build a small Trading app that will allow us to buy an asset from `curl`, a SPA, a CLI, Claude Desktop, an Android mobile app and an iOS mobile app !
33
33
 
34
34
  If you're felling adventurous, create a project and start building your own application, with your own apps, use cases, products, targets :
35
35
 
@@ -37,7 +37,7 @@ If you're felling adventurous, create a project and start building your own appl
37
37
  npx libmodulor CreateProject --outPath ~/Downloads --projectName libmodulor-projx
38
38
  ```
39
39
 
40
- Finally, for more advanced uses, check out the [📜 Guides](https://github.com/c100k/libmodulor/blob/v0.6.0/docs/Guides.md).
40
+ Finally, for more advanced uses, check out the [📜 Guides](https://github.com/c100k/libmodulor/blob/v0.6.1/docs/Guides.md).
41
41
 
42
42
  ## 👨‍💻 Contribute
43
43
 
@@ -45,4 +45,4 @@ If you think you can help in any way, feel free to contact me (cf. `author` in `
45
45
 
46
46
  ## ⚖️ License
47
47
 
48
- [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.6.0/LICENSE)
48
+ [LGPL-3.0](https://github.com/c100k/libmodulor/blob/v0.6.1/LICENSE)
@@ -37,7 +37,7 @@ const PACKAGE_JSON = (name) => `{
37
37
  },
38
38
  "dependencies": {
39
39
  "inversify": "^6.2.2",
40
- "libmodulor": "^0.5.0",
40
+ "libmodulor": "latest",
41
41
  "reflect-metadata": "^0.2.2"
42
42
  },
43
43
  "devDependencies": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "libmodulor",
3
3
  "description": "An opinionated TypeScript library to create business oriented applications",
4
- "version": "0.6.0",
4
+ "version": "0.6.1",
5
5
  "license": "LGPL-3.0",
6
6
  "author": "Chafik H'nini <chafik.hnini@gmail.com>",
7
7
  "homepage": "https://github.com/c100k/libmodulor#readme",