rgl 0.6.4 → 0.6.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +10 -19
- data/lib/rgl/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9d6f6346cda8a821fd876726e57a934fc623cd13215a193300bcddb294fd76a
|
|
4
|
+
data.tar.gz: 1399ad6bd527ae47cff2e217b26a6aa6917c292977a12e50533aa4121cd9cbdd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e189596f1584aad13cc2527bb49fb9005ebc094fe0580f8ce754b612850ee9a74e777528075738f1b31114591edbd3fc8292c96f077f98ab4bfe46b717b6a7ad
|
|
7
|
+
data.tar.gz: b150e61bcc1190a298f1f7f7eb8ca9eb58c5603fedf0c58605872d10eda979bc6418da7e5578e5aa506cc3f772a12499756d9b2da9ebef353fcafe6643b05ffe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### [0.6.5](https://www.github.com/monora/rgl/compare/v0.6.4...v0.6.5) (2023-06-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* README links ([#114](https://www.github.com/monora/rgl/issues/114)) ([682e4e6](https://www.github.com/monora/rgl/commit/682e4e6f3786dc5419ce8d8bff92d4006e95be0d))
|
|
9
|
+
|
|
3
10
|
## [0.6.4](https://www.github.com/monora/rgl/compare/v0.6.3...v0.6.4) (2023-06-19)
|
|
4
11
|
|
|
5
12
|
### Bug Fixes
|
data/README.md
CHANGED
|
@@ -283,29 +283,20 @@ read and matz for Ruby. Dave included in the latest version of RDoc (alpha9)
|
|
|
283
283
|
the module {RGL::DOT} which is used instead of Roberts module to visualize
|
|
284
284
|
graphs.
|
|
285
285
|
|
|
286
|
-
Jeremy Bopp, John Carter, Sascha Doerdelmann, Shawn Garbett, Andreas
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
See also the [list of contributers][5]
|
|
286
|
+
Jeremy Bopp, John Carter, Sascha Doerdelmann, Shawn Garbett, Andreas Schörk, Dan
|
|
287
|
+
Čermák, Kirill Lashuk and Markus Napp for contributing additions, test cases and
|
|
288
|
+
bugfixes. The complete list of contributers is
|
|
289
|
+
[here](https://github.com/monora/rgl/contributors).
|
|
291
290
|
|
|
292
291
|
## Links
|
|
293
292
|
|
|
294
|
-
- See
|
|
295
|
-
|
|
296
|
-
-
|
|
297
|
-
|
|
298
|
-
documentation.
|
|
293
|
+
- See {file:CHANGELOG.md} for major/breaking updates.
|
|
294
|
+
- To **contribute**, please read {file:.github/CONTRIBUTING.md} first.
|
|
295
|
+
- Please [open an issue](https://github.com/monora/rgl/issues/new) if anything
|
|
296
|
+
is missing or unclear in this documentation.
|
|
299
297
|
|
|
300
298
|
## Copying
|
|
301
299
|
|
|
302
300
|
RGL is Copyright (c) 2002,2004,2005,2008,2013,2015,2019,2020,2022,2023 by Horst
|
|
303
|
-
Duchene. It is free software, and may be redistributed under the
|
|
304
|
-
|
|
305
|
-
the LICENSE file.
|
|
306
|
-
|
|
307
|
-
[1] ./CHANGELOG.md
|
|
308
|
-
[2] https://github.com/monora/rgl/releases
|
|
309
|
-
[3] https://github.com/monora/rgl/issues/new
|
|
310
|
-
[4] ./.github/CONTRIBUTING.md
|
|
311
|
-
[5] https://github.com/monora/rgl/contributors
|
|
301
|
+
Duchene. It is free software, and may be redistributed under the {file:LICENSE}
|
|
302
|
+
and terms specified in the LICENSE file.
|
data/lib/rgl/version.rb
CHANGED