Skip to content

Commit

Permalink
fix: bump version of norgopolis-server to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vhyrro committed Mar 24, 2024
1 parent 7c5868a commit 0d8a7ec
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/luarocks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ jobs:
dependencies: |
nvim-nio
norgopolis-client.lua >= 0.2.0
norgopolis-server.lua >= 1.2.1
norgopolis-server.lua >= 1.3.1
lua-utils.nvim
8 changes: 8 additions & 0 deletions lua/neorg/core/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,12 @@ local neorg = {
utils = require("neorg.core.utils"),
}

-- Try to connect to norgopolis

local norgopolis = require("norgopolis").connect("localhost")

norgopolis:invoke("hello-world", "echo", "this is a message from norgopolis!", function(ret)
vim.print("Hello from norgopolis: " .. ret)
end)

return neorg
2 changes: 1 addition & 1 deletion neorg-scm-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies = {
"lua >= 5.1, < 5.4",
"nvim-nio",
"norgopolis-client.lua >= 0.2.0",
"norgopolis-server.lua >= 1.2.1",
"norgopolis-server.lua >= 1.3.1",
"lua-utils.nvim",
}

Expand Down

0 comments on commit 0d8a7ec

Please sign in to comment.