chore(release): 0.1.0
This commit is contained in:
parent
acb6673978
commit
c1cde23455
1
.cuddle/base
Submodule
1
.cuddle/base
Submodule
@ -0,0 +1 @@
|
|||||||
|
Subproject commit 25407e4b8424df0cab4377f9e30b5bf2174ebdba
|
137
.cuddle/tmp/cuddle-rust-cli-plan.yaml
Normal file
137
.cuddle/tmp/cuddle-rust-cli-plan.yaml
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
kind: pipeline
|
||||||
|
name: cuddle-rust-cli-plan
|
||||||
|
type: docker
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: load_secret
|
||||||
|
image: debian:buster-slim
|
||||||
|
volumes:
|
||||||
|
- name: ssh
|
||||||
|
path: /root/.ssh/
|
||||||
|
environment:
|
||||||
|
SSH_KEY:
|
||||||
|
from_secret: gitea_id_ed25519
|
||||||
|
commands:
|
||||||
|
- mkdir -p $HOME/.ssh/
|
||||||
|
- echo "$SSH_KEY" | base64 -d > $HOME/.ssh/id_ed25519
|
||||||
|
- chmod -R 600 ~/.ssh
|
||||||
|
- |
|
||||||
|
cat >$HOME/.ssh/config <<EOL
|
||||||
|
Host git.front.kjuulh.io
|
||||||
|
IdentityFile $HOME/.ssh/id_ed25519
|
||||||
|
IdentitiesOnly yes
|
||||||
|
UserKnownHostsFile=/dev/null
|
||||||
|
StrictHostKeyChecking no
|
||||||
|
EOL
|
||||||
|
- chmod 700 ~/.ssh/config
|
||||||
|
|
||||||
|
- name: build pr
|
||||||
|
image: kasperhermansen/{{bin_name}}:{{image_tag}}
|
||||||
|
volumes:
|
||||||
|
- name: ssh
|
||||||
|
path: /root/.ssh/
|
||||||
|
commands:
|
||||||
|
- eval `ssh-agent`
|
||||||
|
- ssh-add
|
||||||
|
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
|
||||||
|
- export CLUSTER=clank-dev
|
||||||
|
- cuddle --version
|
||||||
|
- {{ bin_name }} pr
|
||||||
|
environment:
|
||||||
|
DAGGER_CLOUD_TOKEN:
|
||||||
|
from_secret: dagger_cloud_token
|
||||||
|
DRONE_HOST: "https://ci.i.kjuulh.io"
|
||||||
|
DRONE_USER: "kjuulh"
|
||||||
|
DRONE_TOKEN:
|
||||||
|
from_secret: drone_token
|
||||||
|
REGISTRY_CACHE_USERNAME:
|
||||||
|
from_secret: registry_cache_username
|
||||||
|
REGISTRY_CACHE_PASSWORD:
|
||||||
|
from_secret: registry_cache_password
|
||||||
|
REGISTRY_CACHE_TOKEN:
|
||||||
|
from_secret: registry_cache_token
|
||||||
|
REGISTRY_CACHE_url:
|
||||||
|
from_secret: registry_cache_url
|
||||||
|
DOCKER_BUILDKIT: 1
|
||||||
|
DOCKER_PASSWORD:
|
||||||
|
from_secret: docker_password
|
||||||
|
DOCKER_USERNAME:
|
||||||
|
from_secret: docker_username
|
||||||
|
CUDDLE_SECRETS_PROVIDER: 1password
|
||||||
|
CUDDLE_ONE_PASSWORD_DOT_ENV: ".env.ci"
|
||||||
|
CUDDLE_SSH_AGENT: "true"
|
||||||
|
GIT_PASSWORD:
|
||||||
|
from_secret: git_password
|
||||||
|
CI_PREFIX: "/mnt/ci/ci"
|
||||||
|
DOCKER_HOST: "tcp://192.168.1.155:2376"
|
||||||
|
CUDDLE_PLEASE_TOKEN:
|
||||||
|
from_secret: cuddle_please_token
|
||||||
|
OP_SERVICE_ACCOUNT_TOKEN:
|
||||||
|
from_secret: op_service_account_token
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- pull_request
|
||||||
|
exclude:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
depends_on:
|
||||||
|
- "load_secret"
|
||||||
|
|
||||||
|
- name: build main
|
||||||
|
image: kasperhermansen/{{bin_name}}:{{image_tag}}
|
||||||
|
volumes:
|
||||||
|
- name: ssh
|
||||||
|
path: /root/.ssh/
|
||||||
|
commands:
|
||||||
|
- eval `ssh-agent`
|
||||||
|
- ssh-add
|
||||||
|
- echo "$DOCKER_PASSWORD" | docker login --password-stdin --username="$DOCKER_USERNAME" docker.io
|
||||||
|
- export CLUSTER=clank-prod
|
||||||
|
- cuddle --version
|
||||||
|
- {{ bin_name }} main
|
||||||
|
environment:
|
||||||
|
DAGGER_CLOUD_TOKEN:
|
||||||
|
from_secret: dagger_cloud_token
|
||||||
|
DRONE_HOST: "https://ci.i.kjuulh.io"
|
||||||
|
DRONE_USER: "kjuulh"
|
||||||
|
DRONE_TOKEN:
|
||||||
|
from_secret: drone_token
|
||||||
|
REGISTRY_CACHE_USERNAME:
|
||||||
|
from_secret: registry_cache_username
|
||||||
|
REGISTRY_CACHE_PASSWORD:
|
||||||
|
from_secret: registry_cache_password
|
||||||
|
REGISTRY_CACHE_TOKEN:
|
||||||
|
from_secret: registry_cache_token
|
||||||
|
REGISTRY_CACHE_url:
|
||||||
|
from_secret: registry_cache_url
|
||||||
|
DOCKER_BUILDKIT: 1
|
||||||
|
DOCKER_PASSWORD:
|
||||||
|
from_secret: docker_password
|
||||||
|
DOCKER_USERNAME:
|
||||||
|
from_secret: docker_username
|
||||||
|
CUDDLE_SECRETS_PROVIDER: 1password
|
||||||
|
CUDDLE_ONE_PASSWORD_DOT_ENV: ".env.ci"
|
||||||
|
CUDDLE_SSH_AGENT: "true"
|
||||||
|
GIT_PASSWORD:
|
||||||
|
from_secret: git_password
|
||||||
|
CI_PREFIX: "/mnt/ci/ci"
|
||||||
|
DOCKER_HOST: "tcp://192.168.1.155:2376"
|
||||||
|
CUDDLE_PLEASE_TOKEN:
|
||||||
|
from_secret: cuddle_please_token
|
||||||
|
OP_SERVICE_ACCOUNT_TOKEN:
|
||||||
|
from_secret: op_service_account_token
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
branch:
|
||||||
|
- main
|
||||||
|
- master
|
||||||
|
exclude:
|
||||||
|
- pull_request
|
||||||
|
depends_on:
|
||||||
|
- "load_secret"
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- name: ssh
|
||||||
|
temp: {}
|
||||||
|
|
260
CHANGELOG.md
Normal file
260
CHANGELOG.md
Normal file
@ -0,0 +1,260 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.1.0] - 2024-12-22
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- use kignore
|
||||||
|
- add force and cuddle
|
||||||
|
- add force
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- fix space
|
||||||
|
|
||||||
|
|
||||||
|
### Other
|
||||||
|
- Update Rust crate console to v0.15.10
|
||||||
|
|
||||||
|
- Update Rust crate clap to v4.5.23
|
||||||
|
|
||||||
|
- Update Rust crate clap to v4.5.22
|
||||||
|
|
||||||
|
- Update Rust crate tracing-subscriber to v0.3.19
|
||||||
|
|
||||||
|
- Update Rust crate tracing to v0.1.41
|
||||||
|
|
||||||
|
- Update Rust crate clap to v4.5.21
|
||||||
|
|
||||||
|
- Update Rust crate clap to v4.5.20
|
||||||
|
|
||||||
|
- Update Rust crate clap to v4.5.19
|
||||||
|
|
||||||
|
- Update Rust crate clap to v4.5.16
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.5.4
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.5.3
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.5.2
|
||||||
|
|
||||||
|
- Update Rust crate eyre to 0.6.12
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.18
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.17
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.16
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.15
|
||||||
|
|
||||||
|
- Update Rust crate console to 0.15.8
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.14
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.13
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.12
|
||||||
|
|
||||||
|
- Update Rust crate eyre to 0.6.11
|
||||||
|
|
||||||
|
- Update Rust crate eyre to 0.6.10
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.11
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.10
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.9
|
||||||
|
|
||||||
|
- Update Rust crate eyre to 0.6.9
|
||||||
|
|
||||||
|
- Update Rust crate tracing-subscriber to 0.3.18
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.8
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.7
|
||||||
|
|
||||||
|
- Update Rust crate tracing to 0.1.40
|
||||||
|
|
||||||
|
- Update all dependencies
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.5
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.4
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.3
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.2
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.1
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.4.0
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.3.24
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.3.23
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.3.22
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.3.21
|
||||||
|
|
||||||
|
- Merge pull request 'Update Rust crate clap to 4.3.10' (#39) from renovate/all into main
|
||||||
|
|
||||||
|
- Merge pull request 'Update Rust crate clap to 4.3.9' (#38) from renovate/all into main
|
||||||
|
|
||||||
|
- Merge pull request 'Update Rust crate clap to 4.3.8' (#37) from renovate/all into main
|
||||||
|
|
||||||
|
- Merge pull request 'Update Rust crate clap to 4.3.6' (#36) from renovate/all into main
|
||||||
|
|
||||||
|
- Merge pull request 'Update all dependencies' (#35) from renovate/all into main
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.3.0
|
||||||
|
|
||||||
|
- Update Rust crate console to 0.15.6
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.2.7
|
||||||
|
|
||||||
|
- Update Rust crate tracing-subscriber to 0.3.17
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.2.4
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.2.3
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.2.2
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.2.1
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.2.0
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.14
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.13
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.12
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.11
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.10
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.9
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.8
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.1.6
|
||||||
|
|
||||||
|
- Update all dependencies
|
||||||
|
|
||||||
|
- Update Rust crate console to 0.15.4
|
||||||
|
|
||||||
|
- Update Rust crate console to 0.15.3
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.32
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.31
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.30
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.27
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.26
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.23
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.22
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.21
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.20
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.19
|
||||||
|
|
||||||
|
- Update Rust crate clap to 4.0.18
|
||||||
|
|
||||||
|
- Add .drone.yml
|
||||||
|
|
||||||
|
- Add .drone.yml
|
||||||
|
|
||||||
|
- Merge pull request 'Configure Renovate' (#2) from renovate/configure into main
|
||||||
|
|
||||||
|
Reviewed-on: https://git.front.kjuulh.io/kjuulh/gitignore/pulls/2
|
||||||
|
|
||||||
|
- Add renovate.json
|
||||||
|
|
||||||
|
- trying without alias
|
||||||
|
|
||||||
|
- trying again
|
||||||
|
|
||||||
|
- updated formula
|
||||||
|
|
||||||
|
- add completion script to homebrew
|
||||||
|
|
||||||
|
- install via. homebrew
|
||||||
|
|
||||||
|
- cask works
|
||||||
|
|
||||||
|
- updated name
|
||||||
|
|
||||||
|
- with sha
|
||||||
|
|
||||||
|
- trying again
|
||||||
|
|
||||||
|
- without man pages
|
||||||
|
|
||||||
|
- with license
|
||||||
|
|
||||||
|
- Added homebrew
|
||||||
|
|
||||||
|
- With executable rights
|
||||||
|
|
||||||
|
- ...
|
||||||
|
|
||||||
|
- Add testing branch
|
||||||
|
|
||||||
|
- added releaser
|
||||||
|
|
||||||
|
- added brew formula
|
||||||
|
|
||||||
|
- add post install
|
||||||
|
|
||||||
|
- bump version
|
||||||
|
|
||||||
|
- updated readme
|
||||||
|
|
||||||
|
- with updated name
|
||||||
|
|
||||||
|
- with actual category
|
||||||
|
|
||||||
|
- move readme
|
||||||
|
|
||||||
|
- add inner package
|
||||||
|
|
||||||
|
- Fixed publish
|
||||||
|
|
||||||
|
- add install instructions
|
||||||
|
|
||||||
|
- Add readme
|
||||||
|
|
||||||
|
- Added scripts for installing command
|
||||||
|
|
||||||
|
- it wooorks
|
||||||
|
|
||||||
|
- Add git rm cached
|
||||||
|
|
||||||
|
- .gitignore
|
||||||
|
|
||||||
|
- Added base setting
|
||||||
|
|
||||||
|
- added base settings for adding items to ignore
|
||||||
|
|
||||||
|
- Add base commit
|
||||||
|
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- removed win
|
||||||
|
|
||||||
|
- removed duplicates
|
||||||
|
|
@ -2,7 +2,7 @@
|
|||||||
members = ["crates/gitignore_inner", "."]
|
members = ["crates/gitignore_inner", "."]
|
||||||
|
|
||||||
[workspace.package]
|
[workspace.package]
|
||||||
version = "0.1.2"
|
version = "0.1.0"
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "kignore"
|
name = "kignore"
|
||||||
|
Loading…
Reference in New Issue
Block a user