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: README.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,3 +81,22 @@ Due to the nature of the Discord API, we will oftentimes need to add a property
81
81
Furthermore, while we will never break the API (outside of interface changes) on minor builds, we will occasionally need to break the ABI, by introducing parameters to a method to match changes upstream with Discord. As such, a minor version increment may require you to recompile your code, and dependencies, such as addons, may also need to be recompiled and republished on the newer version. When a binary breaking change is made, the change will be noted in the release notes.
82
82
83
83
An increment of the MAJOR component indicates that breaking changes have been made to the library; consumers should check the release notes to determine what changes need to be made.
84
+
85
+
## Branches
86
+
87
+
### Release/X.X
88
+
89
+
Release branch following Major.Minor. Upon release, patches will be pushed to these branches.
90
+
New NuGet releases will be tagged on these branches.
91
+
92
+
### Dev
93
+
94
+
Development branch, available on MyGet. This branch is what pull requests are targetted to.
95
+
96
+
### Feature/X
97
+
98
+
Branches that target Dev, adding new features. Feel free to explore these branches and give feedback where necessary.
99
+
100
+
### Docs/X
101
+
102
+
Usually targets Dev. These branches are used to update documentation with either new features or existing feature rework.
0 commit comments