Skip to content

Commit fc8474a

Browse files
committed
fix: add missing require
1 parent f5c74e6 commit fc8474a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/md_to_notion.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# frozen_string_literal: true
22

33
require_relative "md_to_notion/version"
4+
require_relative "md_to_notion/parser"
45

56
module MdToNotion
67
class Error < StandardError; end

lib/md_to_notion/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module MdToNotion
4-
VERSION = "0.1.0"
4+
VERSION = "0.1.1"
55
end

0 commit comments

Comments
 (0)