Skip to content

Commit a018859

Browse files
authored
Merge pull request #8 from someengineering/lloesche/rename
Rename Resoto -> Fix Inventory
2 parents 2a68fa8 + 4540fb8 commit a018859

25 files changed

+58
-60
lines changed

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @lloesche @aquamatthias @meln1k @anjafr
1+
* @lloesche @aquamatthias @meln1k

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ body:
1717
id: version
1818
attributes:
1919
label: Version
20-
description: What version of Resoto are you running?
20+
description: What version of Fix Inventory are you running?
2121
validations:
2222
required: true
2323
- type: input
@@ -52,4 +52,4 @@ body:
5252
- type: markdown
5353
attributes:
5454
value: |
55-
By submitting this bug report, I agree to follow the [code of conduct](https://resoto.com/code-of-conduct).
55+
By submitting this bug report, I agree to follow the [code of conduct](https://inventory.fix.security/code-of-conduct).

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ contact_links:
44
url: https://discord.gg/someengineering
55
about: Chat with other users and the development team
66
- name: 📄 Documentation
7-
url: https://resoto.com/docs
7+
url: https://inventory.fix.security/docs
88
about: Read and search documentation

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ body:
2828
- type: markdown
2929
attributes:
3030
value: |
31-
By submitting this feature request, I agree to follow the [code of conduct](https://resoto.com/code-of-conduct).
31+
By submitting this feature request, I agree to follow the [code of conduct](https://inventory.fix.security/code-of-conduct).

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
- [ ] Add test coverage for new or updated functionality
1212
- [ ] Lint and test with `tox`
13-
- [ ] Document new or updated functionality (someengineering/resoto.com#XXXX)
13+
- [ ] Document new or updated functionality (someengineering/inventory.fix.security#XXXX)
1414

1515
# Issues Fixed
1616

@@ -21,4 +21,4 @@
2121

2222
# Code of Conduct
2323

24-
By submitting this pull request, I agree to follow the [code of conduct](https://resoto.com/code-of-conduct).
24+
By submitting this pull request, I agree to follow the [code of conduct](https://inventory.fix.security/code-of-conduct).
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: resotodata
1+
name: fixinventorydata
22
on:
33
push:
44
tags:
@@ -7,12 +7,12 @@ on:
77
- main
88
pull_request:
99
paths:
10-
- 'resotodata/**'
10+
- 'fixinventorydata/**'
1111
- '.github/**'
1212

1313
jobs:
14-
resotodata:
15-
name: "resotodata"
14+
fixinventorydata:
15+
name: "fixinventorydata"
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup Python
2222
uses: actions/setup-python@v2
2323
with:
24-
python-version: '3.10'
24+
python-version: '3.11'
2525
architecture: 'x64'
2626

2727
- name: Restore dependency cache
@@ -53,5 +53,5 @@ jobs:
5353
uses: pypa/gh-action-pypi-publish@release/v1
5454
with:
5555
user: __token__
56-
password: ${{ secrets.PYPI_RESOTODATA }}
56+
password: ${{ secrets.PYPI_FIXINVENTORYDATA }}
5757
packages_dir: ./dist/

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ docs/_build/
2727
.DS_Store
2828
.coverage
2929
.dccache
30-
resotoshell/backup_*
31-
resotocore/tools/Assets
3230
out/
3331
*.iml
3432
**/.hypothesis/

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include resotodata/data/*
1+
include fixinventorydata/data/*

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# `resotodata`
2-
Public Resoto Cloud Data
1+
# `fixinventorydata`
2+
Public Fix Inventory Cloud Data
33

44
Location data is open data, licensed under the [Open Data Commons Open Database License (ODbL)](https://opendatacommons.org/licenses/odbl/) by the [OpenStreetMap Foundation (OSMF)](https://wiki.osmfoundation.org/wiki/Main_Page).
55

fixinventorydata/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
"""
2+
Miscellaneous Fix Inventory Data
3+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
4+
Miscellaneous Fix Inventory data.
5+
:copyright: © 2024 Some Engineering Inc.
6+
:license: Apache 2.0, see LICENSE for more details.
7+
"""
8+
9+
__title__ = "fixinventorydata"
10+
__description__ = "Miscellaneous Fix Inventory data."
11+
__author__ = "Some Engineering Inc."
12+
__license__ = "Apache 2.0"
13+
__copyright__ = "Copyright © 2024 Some Engineering Inc."
14+
__version__ = "0.2.4"

0 commit comments

Comments
 (0)