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
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+18Lines changed: 18 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,24 @@ Check the Rakefile and the circleci config for more information.
35
35
36
36
#### 5. Make sure your code follows the [style guide](#style-guide)
37
37
38
+
### Preparing for a new release
39
+
40
+
#### Update the version number
41
+
42
+
You can use the rake task in order to bump the version number, it's safe, and will properly update all version numbers
43
+
44
+
```
45
+
$ bundle exec rake package:set_version[X.X.X]
46
+
```
47
+
48
+
Note that zsh users (such as those using macOS >= 10.15) need to escape the brackets as follows:
49
+
50
+
```
51
+
$ bundle exec rake package:set_version\[X.X.X\]
52
+
```
53
+
54
+
Replace X.X.X by the version number and push to the repository.
55
+
38
56
## Bugs
39
57
Although we try to keep developing with the Parse Platform easy, you still may run into some issues. General questions should be asked on our [community forum](community-forum), technical questions should be asked on [Stack Overflow][stack-overflow], and for everything else we use GitHub issues.
@@ -109,7 +108,6 @@ Compiled frameworks will be in multiple archives inside the `build/release` fold
109
108
-`ParseTwitterUtils-iOS.zip`
110
109
-`ParseUI.zip`
111
110
112
-
113
111
#### Using Parse as a sub-project
114
112
115
113
You can also include parse as a subproject inside of your application if you'd prefer, although we do not recommend this, as it will increase your indexing time significantly. To do so, just drag and drop the Parse.xcodeproj file into your workspace. Note that unit tests will be unavailable if you use Parse like this, as OCMock will be unable to be found.
@@ -118,44 +116,13 @@ You can also include parse as a subproject inside of your application if you'd p
118
116
119
117
We want to make contributing to this project as easy and transparent as possible. Please refer to the [Contribution Guidelines][contributing].
120
118
121
-
## Preparing for a new release
122
-
123
-
### Update the version number
124
-
125
-
You can use the rake task in order to bump the version number, it's safe, and will properly update all version numbers
126
-
127
-
```
128
-
$ bundle exec rake package:set_version[X.X.X]
129
-
```
130
-
131
-
Note that zsh users (such as those using macOS >= 10.15) need to escape the brackets as follows:
132
-
133
-
```
134
-
$ bundle exec rake package:set_version\[X.X.X\]
135
-
```
136
-
137
-
Replace X.X.X by the version number and push to the repository.
138
-
139
119
## Dependencies
140
120
141
121
We use the following libraries as dependencies inside of Parse:
142
122
143
123
-[Bolts][bolts-framework], for task management.
144
124
-[OCMock][ocmock-framework], for unit testing.
145
125
146
-
## License
147
-
148
-
```
149
-
Copyright (c) 2015-present, Parse, LLC.
150
-
All rights reserved.
151
-
152
-
This source code is licensed under the BSD-style license found in the
153
-
LICENSE file in the root directory of this source tree. An additional grant
154
-
of patent rights can be found in the PATENTS file in the same directory.
155
-
```
156
-
157
-
As of April 5, 2017, Parse, LLC has transferred this code to the parse-community organization, and will no longer be contributing to or distributing this code.
0 commit comments