Skip to content

Commit

Permalink
feat!: rename bin
Browse files Browse the repository at this point in the history
  • Loading branch information
pnodet committed Jun 27, 2024
1 parent a24d47e commit 50ff250
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v3
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: gps-trajectory-validation
bin: fc_journey_validation
tar: unix
zip: all
token: ${{ secrets.GITHUB_TOKEN }}
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
name = "gps-trajectory-validation"
name = "fc_journey_validation"
description = "Validate GPS trajectories using a set of rules"
version = "0.0.4"
readme = "README.md"
license = "MIT"
edition = "2021"
homepage = "https://github.com/nivalis-studio/gps-trajectory-validation"
repository = "https://github.com/nivalis-studio/gps-trajectory-validation"
homepage = "https://github.com/ecov/fc_journey_validation"
repository = "https://github.com/ecov/fc_journey_validation"
keywords = ["geospatial"]
categories = ["science::geo"]
authors = ["pnodet <paul[email protected]>", "pnwa <[email protected]>"]
authors = ["pnodet <paul@nivalis.studio>", "pnwa <[email protected]>"]
build = "build.rs"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# gps-trajectory-validation
Validate gps trajectories
# fc_journey_validation
Validate journeys
6 changes: 3 additions & 3 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ All notable changes to this project will be documented in this file.\n
body = """
{% if version %}\
{% if previous.version %}\
## [{{ version | trim_start_matches(pat="v") }}](https://github.com/nivalis-studio/gps-trajectory-validation/compare/{{ previous.version }}..{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
## [{{ version | trim_start_matches(pat="v") }}](https://github.com/nivalis-studio/fc_journey_validation/compare/{{ previous.version }}..{{ version }}) - {{ timestamp | date(format="%Y-%m-%d") }}
{% else %}\
## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}
{% endif %}\
Expand All @@ -29,14 +29,14 @@ body = """
| filter(attribute="scope")
| sort(attribute="scope") %}
- *({{commit.scope}})*{% if commit.breaking %} [**breaking**]{% endif %} \
{{ commit.message | upper_first }} - ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/nivalis-studio/gps-trajectory-validation/commit/{{ commit.id }}))
{{ commit.message | upper_first }} - ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/nivalis-studio/fc_journey_validation/commit/{{ commit.id }}))
{%- endfor -%}
{% raw %}\n{% endraw %}\
{%- for commit in commits %}
{%- if commit.scope -%}
{% else -%}
- {% if commit.breaking %} [**breaking**]{% endif %}\
{{ commit.message | upper_first }} - ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/nivalis-studio/gps-trajectory-validation/commit/{{ commit.id }}))
{{ commit.message | upper_first }} - ([{{ commit.id | truncate(length=7, end="") }}](https://github.com/nivalis-studio/fc_journey_validation/commit/{{ commit.id }}))
{% endif -%}
{% endfor -%}
{% endfor %}\n
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use clap::Parser;
use gps_trajectory_validation::{cli::Cli, input::JourneyInput, journey::Journey, output::Output};
use fc_journey_validation::{cli::Cli, input::JourneyInput, journey::Journey, output::Output};
use std::io::{self, Write};

fn main() {
Expand Down

0 comments on commit 50ff250

Please sign in to comment.