-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement a high-level shadow document interface (#16)
* Implement a high-level shadow document interface * Add JSON compat * Fix typo * Export lock,unlock * Clean up test * Add lock/unlock test * Fix shadow unsubscribe * Remove debug print * Add missing exports * Add missing export * Clean up docs * dont run tests in parallel * Fix concurrency groups * Fix concurrency groups * Fix concurrency groups * debug * debug * debug * Remove serialization for now. Will fix in another PR * Fix documentation typos * Document when tasks may wait forever while offline * Document that tasks may wait forever before issuing a connect
- Loading branch information
1 parent
79db7ad
commit bbd6653
Showing
16 changed files
with
1,760 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
margin = 120 | ||
remove_extra_newlines = true | ||
format_docstrings = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: Documenter | ||
on: | ||
push: | ||
branches: [main] | ||
tags: [v*] | ||
pull_request: | ||
|
||
jobs: | ||
Documenter: | ||
permissions: | ||
contents: write | ||
name: Documentation | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: julia-actions/julia-buildpkg@v1 | ||
- uses: julia-actions/julia-docdeploy@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,3 +9,5 @@ log.txt | |
|
||
# Built Visual Studio Code Extensions | ||
*.vsix | ||
|
||
.env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
name = "AWSCRT" | ||
uuid = "df31ea59-17a4-4ebd-9d69-4f45266dc2c7" | ||
version = "0.1.2" | ||
version = "0.1.3" | ||
|
||
[deps] | ||
AWSCRT_jll = "01db5350-6ea1-5d9a-9a47-8a31a394cb9c" | ||
CEnum = "fa961155-64e5-5f13-b03f-caf6b980ea82" | ||
CountDownLatches = "621fb831-fdad-4fff-93ac-1af7b7ed19e3" | ||
ForeignCallbacks = "809b5ff2-8730-47bb-8e19-67299d747c44" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
LibAWSCRT = "df7458b6-5204-493f-a0e7-404b4eb72fac" | ||
|
||
[compat] | ||
CEnum = "0.4" | ||
CountDownLatches = "2" | ||
ForeignCallbacks = "0.1" | ||
JSON = "0.21" | ||
LibAWSCRT = "0.1" | ||
julia = "1.9" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
bbd6653
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator register
bbd6653
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/92678
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: