You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 5, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,14 @@
2
2
3
3
This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.
4
4
5
+
## Install with Bower
6
+
7
+
PatternFly can be installed and managed through Bower. To do so, either add `patternfly` as a dependency in your `bower.json` or run the following:
8
+
9
+
```
10
+
bower install patternfly
11
+
```
12
+
5
13
## Dependencies
6
14
7
15
PatternFly includes a number of dependencies that are not committed to this repository. To add them, see "Install Bower Components". And make sure you keep them updated (see "Keeping Bower Components Updated").
@@ -82,6 +90,31 @@ PatternFlyIcons font is generated using [IcoMoon](http://icomoon.io/app). [Load
82
90
83
91
The `tests/` directory contains HTML pages with component and pattern examples in order to facilitate development. Please consult the official documentation (see below) for full details on how to use PatternFly.
84
92
93
+
## Release
94
+
95
+
The PatternFly library is released through the Bower package manager. This package manager determines available versions and installs based upon git tags. To release a new version version of PatternFly the version listed in `bower.json` needs to be updated and the repository tagged and pushed upstream.
96
+
97
+
Update the version listed in `bower.json` by editing the file and changing the line:
98
+
99
+
```
100
+
"version": "<new_version>"
101
+
```
102
+
103
+
Commit the version bump:
104
+
105
+
```
106
+
git commit -a -m "Version bump to <new_version>"
107
+
```
108
+
109
+
Tag and push upstream (assuming you have commit access):
110
+
111
+
```
112
+
git tag <new_version>
113
+
git push && git push --tags
114
+
```
115
+
116
+
The new version will now be automatically available via Bower.
117
+
85
118
## Documentation
86
119
87
120
See [https://www.patternfly.org](https://www.patternfly.org) and [http://getbootstrap.com/](http://getbootstrap.com/).
0 commit comments