File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+ ## [ 1.0.1] - 2025-08-14
6
+ ### Changed
7
+ - Bumped version to 1.0.1 to allow Multicore override after initial 1.0.0 standard release on rubygems.org
8
+
5
9
## [ 1.0.0] - 2025-08-14
6
10
### Added
7
11
- Initial release of the framework
Original file line number Diff line number Diff line change @@ -51,8 +51,17 @@ open doc/index.html
51
51
```
52
52
53
53
#### Publish
54
+ ##### 1. Setup RubyGems API Key
55
+ ``` shell
56
+ mkdir -p ~ /.gem
57
+ cat > ~ /.gem/credentials << EOF
58
+ ---
59
+ :rubygems_api_key: API_KEY
60
+ EOF
61
+ chmod 0600 ~ /.gem/credentials
62
+ ```
63
+ ##### 2. Build the gem
54
64
``` shell
55
- gem signin
56
65
gem build puremvc.gemspec
57
66
gem push puremvc-1.0.0.gem
58
67
```
Original file line number Diff line number Diff line change 2
2
3
3
Gem ::Specification . new do |spec |
4
4
spec . name = 'puremvc'
5
- spec . version = '1.0.0 '
5
+ spec . version = '1.0.1 '
6
6
spec . summary = 'PureMVC Multicore Framework'
7
7
spec . description = 'PureMVC is a lightweight framework for Model-View-Controller app development.'
8
8
spec . authors = [ 'Saad Shams' ]
You can’t perform that action at this time.
0 commit comments