linear-cli 0.9.6 → 0.9.7
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cf0bca808a6dea04bcbd0925b6ec7c3a1d4aecc684533f8c5a11b93a0db22621
|
|
4
|
+
data.tar.gz: 6f049dfd9148913c6542e1198f3b6a3e55117dd233e3fad8579160ab24bb3643
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cb9542278055c8aab88f5ebe5fc559fb150aa731e4675f5c4a5a240d4c9d94d565726884a8e5d33c07c16730a40c5ff3cfc30fecf5bc3dbbe52ae0cc0486ab9
|
|
7
|
+
data.tar.gz: 17fc8389d583b1e88206df3e4598b624332f1d913f7f47bafd3c79ae826919699b5d4407aa55169577fabea729254457d939d2fc0088ba81ab4e6820eafd9f1f
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [0.9.7] - 2024-02-08
|
|
6
|
+
### Added
|
|
7
|
+
- Added the plc wrapper for container running, and ssh for git ops in the container (@bougyman)
|
|
8
|
+
|
|
5
9
|
## [0.9.5] - 2024-02-08
|
|
6
10
|
### Added
|
|
7
11
|
- Added build_image to build/push container image (@bougyman)
|
|
@@ -88,8 +92,9 @@
|
|
|
88
92
|
### Added
|
|
89
93
|
- Added new changelog management system (changelog-rb) (@bougyman)
|
|
90
94
|
|
|
91
|
-
[Unreleased]: https://github.com/rubyists/linear-cli/compare/0.9.
|
|
92
|
-
[0.9.
|
|
95
|
+
[Unreleased]: https://github.com/rubyists/linear-cli/compare/0.9.7...HEAD
|
|
96
|
+
[0.9.7]: https://github.com/rubyists/linear-cli/compare/v0.9.5...0.9.7
|
|
97
|
+
[0.9.5]: https://github.com/rubyists/linear-cli/compare/v0.9.4...v0.9.5
|
|
93
98
|
[0.9.4]: https://github.com/rubyists/linear-cli/compare/v0.9.3...v0.9.4
|
|
94
99
|
[0.9.3]: https://github.com/rubyists/linear-cli/compare/v0.9.1...v0.9.3
|
|
95
100
|
[0.9.1]: https://github.com/rubyists/linear-cli/compare/v0.9.0...v0.9.1
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
date: 2024-02-08
|
data/lib/linear/cli/version.rb
CHANGED
data/oci/Containerfile
CHANGED
|
@@ -17,7 +17,7 @@ RUN gem i semantic_logger && bundle install && bundle exec rake build
|
|
|
17
17
|
|
|
18
18
|
############### Build step done ###############
|
|
19
19
|
FROM docker.io/ruby:3.3.0-alpine3.19
|
|
20
|
-
ARG PACKAGES="bash sqlite sqlite-dev ruby-dev build-base github-cli"
|
|
20
|
+
ARG PACKAGES="bash sqlite sqlite-dev ruby-dev build-base github-cli openssh"
|
|
21
21
|
ARG APP_VERSION
|
|
22
22
|
|
|
23
23
|
# install packages
|
data/oci/plc
ADDED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: linear-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tj (bougyman) Vanderpoel
|
|
@@ -253,6 +253,8 @@ files:
|
|
|
253
253
|
- changelog/0.9.5/added_build_image_to_build_push_container_image.yml
|
|
254
254
|
- changelog/0.9.5/added_user_information_to_comment_list_in_issue_view.yml
|
|
255
255
|
- changelog/0.9.5/tag.yml
|
|
256
|
+
- changelog/0.9.7/added_the_plc_wrapper_for_container_running_and_ssh_for_git_ops_in_the_container.yml
|
|
257
|
+
- changelog/0.9.7/tag.yml
|
|
256
258
|
- changelog/unreleased/.gitkeep
|
|
257
259
|
- cinemas/listings.cinema
|
|
258
260
|
- cinemas/listings.cinema.gif
|
|
@@ -304,6 +306,7 @@ files:
|
|
|
304
306
|
- linear-cli.gemspec
|
|
305
307
|
- oci/Containerfile
|
|
306
308
|
- oci/build_image
|
|
309
|
+
- oci/plc
|
|
307
310
|
homepage: https://github.com/rubyists/linear-cli
|
|
308
311
|
licenses:
|
|
309
312
|
- MIT
|