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
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,9 +10,9 @@ Thank you for taking an interest in the project, and contributing to it - it's a
10
10
11
11
## Bug Reports
12
12
[bug-reports]: #bug-reports
13
-
-**Ensure the bug has not already been reported** - this can be done with a quick search of the [existing open issues](https://github.com/rust-rocksdb/rust-rocksdb/issues?q=is%3Aissue+is%3Aopen+).
13
+
-**Ensure the bug has not already been reported** - this can be done with a quick search of the [existing open issues](https://github.com/surrealdb/rust-rocksdb/issues?q=is%3Aissue+is%3Aopen+).
14
14
-**Ensure the bug applies to the Rust wrapper, and not the underlying library** - bugs in the RocksDB library should be [reported upstream](https://github.com/facebook/rocksdb/issues).
15
-
- When [creating an issue](https://github.com/rust-rocksdb/rust-rocksdb/issues/new) please try to:
15
+
- When [creating an issue](https://github.com/surrealdb/rust-rocksdb/issues/new) please try to:
16
16
-**Use a clear and descriptive title** to identify the issue
17
17
-**Provide enough context** to accurately summarize the issue. Not every issue will need detailed steps to recreate, example code, stack traces, etc. - use your own judgment on what information would be helpful to anyone working on the issue. It's easier for someone to skim over too much context, than stop and wait for a response when context is missing.
18
18
@@ -30,7 +30,7 @@ Discussion around the design and development of the wrapper primarily occurs wit
30
30
31
31
## Pull Requests
32
32
[pull-requests]: #pull-requests
33
-
Pull requests are welcome, and when contributing code, the author agrees to do so under the project's [licensing](https://github.com/rust-rocksdb/rust-rocksdb/blob/master/LICENSE) - Apache 2.0 as of the time of this writing. The maintainers greatly appreciate PRs that follow open-source contribution best practices:
33
+
Pull requests are welcome, and when contributing code, the author agrees to do so under the project's [licensing](https://github.com/surrealdb/rust-rocksdb/blob/master/LICENSE) - Apache 2.0 as of the time of this writing. The maintainers greatly appreciate PRs that follow open-source contribution best practices:
34
34
1. Fork this repository to your personal GitHub account.
35
35
1. Create a branch that includes your changes, **keep changes isolated and granular**.
36
36
1. Include any relevant documentation and/or tests. Write [documentation tests](https://doc.rust-lang.org/rustdoc/documentation-tests.html) when relevant.
Copy file name to clipboardExpand all lines: MAINTAINERSHIP.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,5 @@
1
+
> **Note**: This maintainership document is inherited from the upstream [rust-rocksdb](https://github.com/rust-rocksdb/rust-rocksdb) project and serves as a reference for this SurrealDB fork. Governance and processes may be adapted to align with SurrealDB's standards.
2
+
1
3
Maintainers agree to operate under this set of guidelines:
2
4
3
5
#### Authority
@@ -10,7 +12,7 @@ Maintainers are trusted to close issues, merge pull requests, and publish crates
10
12
* updating the changelog
11
13
* requires no approval
12
14
1. Normal
13
-
* librocksdb-sys updates
15
+
*surrealdb-librocksdb-sys updates
14
16
* API tracking code in the rocksdb crate that does not change control flow
15
17
* breaking changes due to removed functionality in rocksdb
16
18
* require 1 approval from another maintainer. if no maintainer is able to be reached for 2 weeks, then progress may be made anyway
> - The `master` branch is an up-to-date sync from the upstream [rust-rocksdb](https://github.com/rust-rocksdb/rust-rocksdb) repository.
13
+
> - The `main` branch is rebased from `master` with packaging changes to publish as `surrealdb-rocksdb` on crates.io (the library name remains `rocksdb`, so existing `use rocksdb::*` imports work unchanged).
14
+
> - Release branches (e.g. `0.24.0-surreal`) are rebased from `main`, one per published version.
15
+
> - For bugs unrelated to packaging, please report them [upstream](https://github.com/rust-rocksdb/rust-rocksdb/issues).
11
16
12
17
## Requirements
13
18
@@ -29,6 +34,12 @@ compression submodules:
29
34
git submodule update --init --recursive
30
35
```
31
36
37
+
To update the RocksDB submodule to the latest commit on its tracked branch:
0 commit comments