Skip to content

Commit e1da256

Browse files
authored
Merge pull request #14 from scientist-labs/scientist-labs
Scientist labs
2 parents 05fcfe2 + 15f5fb1 commit e1da256

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4949
- Rust edition 2021
5050
- Cross-compilation support for multiple platforms
5151

52-
[Unreleased]: https://github.com/cpetersen/parsekit/compare/v0.1.0...HEAD
53-
[0.1.0]: https://github.com/cpetersen/parsekit/releases/tag/v0.1.0
52+
[Unreleased]: https://github.com/scientist-labs/parsekit/compare/v0.1.0...HEAD
53+
[0.1.0]: https://github.com/scientist-labs/parsekit/releases/tag/v0.1.0

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,4 @@ Releases are managed by maintainers. The process is:
194194

195195
## Questions?
196196

197-
Feel free to open an issue with the `question` label or start a discussion in the [GitHub Discussions](https://github.com/cpetersen/parsekit/discussions) area.
197+
Feel free to open an issue with the `question` label or start a discussion in the [GitHub Discussions](https://github.com/scientist-labs/parsekit/discussions) area.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ ParseKit uses a hybrid Ruby/Rust architecture:
186186

187187
## Contributing
188188

189-
Bug reports and pull requests are welcome on GitHub at https://github.com/cpetersen/parsekit.
189+
Bug reports and pull requests are welcome on GitHub at https://github.com/scientist-labs/parsekit.
190190

191191
## License
192192

lib/parsekit/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ParseKit
4-
VERSION = "0.1.1"
4+
VERSION = "0.1.2"
55
end

parsekit.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
1010

1111
spec.summary = "Ruby document parsing toolkit with PDF and OCR support"
1212
spec.description = "Native Ruby gem for parsing documents (PDF, DOCX, XLSX, images with OCR) with zero runtime dependencies. Statically links MuPDF for PDF extraction and Tesseract for OCR."
13-
spec.homepage = "https://github.com/cpetersen/parsekit"
13+
spec.homepage = "https://github.com/scientist-labs/parsekit"
1414
spec.license = "MIT"
1515
spec.required_ruby_version = ">= 3.0.0"
1616

@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
2020

2121
# Specify which files should be added to the gem when it is released.
2222
spec.files = Dir.chdir(__dir__) do
23-
Dir["lib/**/*"] + Dir["ext/**/*.rs", "ext/**/*.toml", "ext/**/*.rb"] +
23+
Dir["lib/**/*"] + Dir["ext/**/*.rs", "ext/**/*.toml", "ext/**/*.rb"] +
2424
["README.md", "LICENSE.txt", "CHANGELOG.md"].select { |f| File.exist?(f) }
2525
end
2626
spec.bindir = "exe"
@@ -36,4 +36,4 @@ Gem::Specification.new do |spec|
3636
spec.add_development_dependency "rake-compiler", "~> 1.2"
3737
spec.add_development_dependency "rspec", "~> 3.0"
3838
spec.add_development_dependency "simplecov", "~> 0.22"
39-
end
39+
end

0 commit comments

Comments
 (0)