arvo-core 0.0.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
package/README.md CHANGED
@@ -39,3 +39,10 @@ The package also includes utility functions for:
39
39
  - Creating ArvoEvents
40
40
  - Integrating with OpenTelemetry
41
41
  - TypeScript types for core components
42
+
43
+ ## License
44
+
45
+ This package is available under the MIT License. For more details, refer to the [LICENSE.md](LICENSE.md) file in the project repository.
46
+
47
+ ## Change Logs
48
+ See the package change logs [here](CHANGELOG.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "0.0.2",
3
+ "version": "1.0.0",
4
4
  "description": "This core package contains all the core classes and components of the Arvo Event Driven System",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -1,29 +0,0 @@
1
- #!/bin/bash
2
-
3
- # File name
4
- CHANGELOG_FILE="CHANGELOG.md"
5
-
6
- # Get current date
7
- CURRENT_DATE=$(date +"%Y-%m-%d")
8
-
9
- # Prompt for version
10
- read -p "Enter version number: " VERSION
11
-
12
- # Prompt for description
13
- read -p "Enter change description: " DESCRIPTION
14
-
15
- # Create or append to CHANGELOG.md
16
- if [ ! -f "$CHANGELOG_FILE" ]; then
17
- echo "# Changelog" > "$CHANGELOG_FILE"
18
- echo "" >> "$CHANGELOG_FILE"
19
- fi
20
-
21
- # Add new entry
22
- {
23
- echo "## [$VERSION] - $CURRENT_DATE"
24
- echo ""
25
- echo "- $DESCRIPTION"
26
- echo ""
27
- } >> "$CHANGELOG_FILE"
28
-
29
- echo "Changelog updated successfully!"