Skip to content

Commit 320ad5e

Browse files
committed
Update organization
1 parent 64427b7 commit 320ad5e

13 files changed

Lines changed: 27 additions & 27 deletions

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Here you can see a [3 min quick demo](https://youtu.be/t4aOSJibuzs).
1313
> development tools.
1414
1515
## 💻 Install
16-
1. Download the latest binary from the [releases page](https://github.com/hexagontk/codecv/releases)
16+
1. Download the latest binary from the [releases page](https://github.com/codecv-co/codecv/releases)
1717
2. Copy or link the binary to a directory in the PATH
1818
3. Type `codecv --help` to check how to use the reference tool
1919

@@ -49,7 +49,7 @@ requirement.
4949

5050
## 📄 CV Format Schema
5151
The CV JSON schema is located at [/cv.schema.json](/cv.schema.json). The URL to use on the CVs will
52-
be: `https://raw.githubusercontent.com/hexagontk/codecv/<version>/cv.schema.json`. Being `version`
52+
be: `https://raw.githubusercontent.com/codecv-co/codecv/<version>/cv.schema.json`. Being `version`
5353
the schema version (`master` can be used to link to the latest published version).
5454

5555
The schema can be used to validate documents in different formats (YAML, JSON and TOML at the
@@ -123,7 +123,7 @@ improvement, file a bug or resolve a usage doubt, you are absolutely encouraged
123123
Also, if you want to contribute a new feature on the tool or a change on the schema. You can also
124124
do so by creating an issue and filing a PR. Please read the [contributing guide] before doing so.
125125

126-
[contributing guide]: https://github.com/hexagontk/codecv/contribute
126+
[contributing guide]: https://github.com/codecv-co/codecv/contribute
127127

128128
## ❤️ Support the Project
129129
If you want to see more progress on this project, and see more developer targeted tools,
@@ -135,4 +135,4 @@ account ([@hexagontk]) and the [GitHub organization].
135135
Thanks for your support!
136136

137137
[@hexagontk]: https://twitter.com/hexagontk
138-
[GitHub organization]: https://github.com/hexagonkt
138+
[GitHub organization]: https://github.com/codecv-co

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ apply(from = "$gradleScripts/kotlin.gradle")
2222
apply(from = "$gradleScripts/application.gradle")
2323
apply(from = "$gradleScripts/native.gradle")
2424

25-
group = "com.hexagontk.tools"
25+
group = "co.codecv.tools"
2626
version = "0.9.26"
2727
description = "CVs for programmers"
2828

cv.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema" : "https://json-schema.org/draft-04/schema",
3-
"$id" : "https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json",
3+
"$id" : "https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json",
44
"$ref" : "#/$defs/Cv",
55
"$defs" : {
66
"Language" : {

examples/full.cv.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema" : "https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json",
2+
"$schema" : "https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json",
33

44
"Job Search" : "unavailable",
55

@@ -110,7 +110,7 @@
110110
],
111111

112112
"Links" : [
113-
{ "Address" : "https://github.com/hexagontk/hexagon" },
113+
{ "Address" : "https://github.com/codecv-co/hexagon" },
114114
{ "Address" : "https://twitter.com/hexagon_kt" },
115115
{ "Address" : "https://dev.to/hexagonkt" }
116116
],
@@ -283,7 +283,7 @@
283283
{ "Address" : "tel:+1-91-106-28-01", "Title" : "Landline" },
284284
{ "Address" : "mailto:erlich@aviato.com", "Title" : "Email", "Tags" : [ "Work" ] }
285285
],
286-
"Social Profiles" : [ "https://github.com/hexagontk/hexagon" ],
286+
"Social Profiles" : [ "https://github.com/codecv-co/hexagon" ],
287287
"Projects" : [ "middle-out" ]
288288
}
289289
],

examples/full.cv.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env codecv
22

3-
"$schema" = "https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json"
3+
"$schema" = "https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json"
44

55
"Job Search" = "unavailable"
66
"Last Update" = 2022-12-27
@@ -33,7 +33,7 @@ Goals = [
3333
]
3434

3535
Links = [
36-
{ Address = "https://github.com/hexagontk/hexagon" },
36+
{ Address = "https://github.com/codecv-co/hexagon" },
3737
{ Address = "https://twitter.com/hexagon_kt" },
3838
{ Address = "https://dev.to/hexagonkt" },
3939
]
@@ -226,7 +226,7 @@ Issuer.Name = "Hooli"
226226

227227
[[References]]
228228
"Full Name" = "Erlich Bachman"
229-
"Social Profiles" = [ "https://github.com/hexagontk/hexagon" ]
229+
"Social Profiles" = [ "https://github.com/codecv-co/hexagon" ]
230230
Type = "manager"
231231
Projects = [ "middle-out" ]
232232
Summary = """\

examples/full.cv.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env codecv
2-
# yaml-language-server: $schema=https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json
2+
# yaml-language-server: $schema=https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json
33

4-
$schema: https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json
4+
$schema: https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json
55

66
Job Search: unavailable
77

@@ -100,7 +100,7 @@ Top Skills:
100100
- Low level Programming
101101

102102
Links:
103-
- Address: https://github.com/hexagontk/hexagon
103+
- Address: https://github.com/codecv-co/hexagon
104104
- Address: https://twitter.com/hexagon_kt
105105
- Address: https://dev.to/hexagonkt
106106

@@ -237,7 +237,7 @@ References:
237237
- Address: mailto:erlich@aviato.com
238238
Title: Email
239239
Tags: [ Work ]
240-
Social Profiles: [ https://github.com/hexagontk/hexagon ]
240+
Social Profiles: [ https://github.com/codecv-co/hexagon ]
241241
Projects: [ middle-out ]
242242

243243
Technical Skills:

examples/minimum.cv.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema" : "https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json",
2+
"$schema" : "https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json",
33

44
"Locale" : "en",
55

examples/minimum.cv.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env codecv
22

3-
"$schema" = "https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json"
3+
"$schema" = "https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json"
44

55
Locale = "en"
66

examples/minimum.cv.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env codecv
2-
# yaml-language-server: $schema=https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json
2+
# yaml-language-server: $schema=https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json
33

4-
$schema: https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json
4+
$schema: https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json
55

66
Locale: en
77

examples/modular/additional_experiences.cv.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# yaml-language-server: $schema=https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json
1+
# yaml-language-server: $schema=https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json
22

3-
$schema: https://raw.githubusercontent.com/hexagontk/codecv/master/cv.schema.json
3+
$schema: https://raw.githubusercontent.com/codecv-co/codecv/master/cv.schema.json
44

55
Personal Projects:
66
- Title: Pied Piper

0 commit comments

Comments
 (0)