Skip to content

Commit b8198e5

Browse files
committed
feat: bump version numbers for publish to npm/pypi
* Added the repository and website to pyproject.toml
1 parent e56a621 commit b8198e5

File tree

5 files changed

+59
-2
lines changed

5 files changed

+59
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "oss-directory",
3-
"version": "0.0.15",
3+
"version": "0.0.16",
44
"description": "Open source software directory",
55
"repository": {
66
"type": "git",

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "oss-directory"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Open source software directory"
55
authors = ["Kariba Labs"]
66
license = "Apache-2.0"
@@ -9,6 +9,9 @@ packages = [
99
{ include = "ossdirectory", from = "src/" },
1010
{ include = "resources", from = "src/", to = "ossdirectory" },
1111
]
12+
repository = "https://github.com/opensource-observer/oss-directory"
13+
homepage = "https://www.opensource.observer"
14+
documentation = "https://docs.opensource.observer/"
1215

1316

1417
[tool.poetry.dependencies]

src/types/collection.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ export interface Collection {
1717
* @minItems 1
1818
*/
1919
projects: [string, ...string[]];
20+
comments?: string[];
2021
[k: string]: unknown;
2122
}

src/types/named.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
/* eslint-disable */
2+
/**
3+
* This file was automatically generated by json-schema-to-typescript.
4+
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5+
* and run json-schema-to-typescript to regenerate this file.
6+
*/
7+
8+
/**
9+
* A generic named object
10+
*/
11+
export interface NamedEntity {
12+
name: string;
13+
[k: string]: unknown;
14+
}

src/types/project.ts

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ export interface Project {
1717
social?: SocialProfile;
1818
github?: URL[];
1919
npm?: URL[];
20+
cargo?: URL[];
21+
pypi?: URL[];
22+
go?: URL[];
23+
open_collective?: URL[];
2024
blockchain?: BlockchainAddress[];
25+
comments?: string[];
2126
[k: string]: unknown;
2227
}
2328
/**
@@ -77,36 +82,70 @@ export interface BlockchainAddress {
7782
(
7883
| "any_evm"
7984
| "arbitrum_one"
85+
| "automata"
8086
| "base"
87+
| "bob"
88+
| "cyber"
8189
| "frax"
90+
| "ham"
91+
| "kroma"
8292
| "linea"
93+
| "lisk"
94+
| "lyra"
8395
| "mainnet"
8496
| "mantle"
8597
| "matic"
8698
| "metal"
99+
| "mint"
87100
| "mode"
88101
| "optimism"
102+
| "orderly"
89103
| "pgn"
104+
| "polynomial"
90105
| "polygon_zkevm"
106+
| "race"
107+
| "redstone"
91108
| "scroll"
109+
| "shape"
110+
| "swan"
111+
| "unichain"
112+
| "worldchain"
113+
| "xterio"
92114
| "zksync_era"
93115
| "zora"
94116
),
95117
...(
96118
| "any_evm"
97119
| "arbitrum_one"
120+
| "automata"
98121
| "base"
122+
| "bob"
123+
| "cyber"
99124
| "frax"
125+
| "ham"
126+
| "kroma"
100127
| "linea"
128+
| "lisk"
129+
| "lyra"
101130
| "mainnet"
102131
| "mantle"
103132
| "matic"
104133
| "metal"
134+
| "mint"
105135
| "mode"
106136
| "optimism"
137+
| "orderly"
107138
| "pgn"
139+
| "polynomial"
108140
| "polygon_zkevm"
141+
| "race"
142+
| "redstone"
109143
| "scroll"
144+
| "shape"
145+
| "swan"
146+
| "unichain"
147+
| "worldchain"
148+
| "xterio"
110149
| "zksync_era"
111150
| "zora"
112151
)[],

0 commit comments

Comments
 (0)