Skip to content

Commit 5c80633

Browse files
committed
update
1 parent d83dc58 commit 5c80633

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to this project will be documented in this file.
44

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+
59
## [1.0.0] - 2025-08-14
610
### Added
711
- Initial release of the framework

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,17 @@ open doc/index.html
5151
```
5252

5353
#### 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
5464
```shell
55-
gem signin
5665
gem build puremvc.gemspec
5766
gem push puremvc-1.0.0.gem
5867
```

puremvc.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = 'puremvc'
5-
spec.version = '1.0.0'
5+
spec.version = '1.0.1'
66
spec.summary = 'PureMVC Multicore Framework'
77
spec.description = 'PureMVC is a lightweight framework for Model-View-Controller app development.'
88
spec.authors = ['Saad Shams']

0 commit comments

Comments
 (0)