Skip to content

Commit 7fc57c7

Browse files
BHoMBotFraser Greenroyd
authored andcommitted
Update copyright headers to 2023
1 parent f89ee3d commit 7fc57c7

File tree

16 files changed

+33
-17
lines changed

16 files changed

+33
-17
lines changed

HTTP_Adapter/AdapterActions/Pull.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -116,3 +116,4 @@ public IEnumerable<object> Pull(object request, ActionConfig actionConfig)
116116

117117

118118

119+

HTTP_Adapter/AdapterActions/Push.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -46,3 +46,4 @@ public override List<object> Push(IEnumerable<object> objects,
4646

4747

4848

49+

HTTP_Adapter/HttpAdapter.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -54,3 +54,4 @@ public HTTPAdapter()
5454

5555

5656

57+

HTTP_Adapter/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -58,3 +58,4 @@
5858
[assembly: AssemblyFileVersion("6.1.0.0")]
5959

6060

61+

HTTP_Engine/Compute/GetRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -133,3 +133,4 @@ private static byte[] GetRequestBinary(string baseUrl, Dictionary<string, object
133133

134134

135135

136+

HTTP_Engine/Compute/GetRequestAsync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -76,3 +76,4 @@ private static async Task<string> GetRequestAsync(string url, CustomObject heade
7676

7777

7878

79+

HTTP_Engine/Compute/MakeRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -55,3 +55,4 @@ public static byte[] MakeRequestBinary(GetRequest request)
5555

5656

5757

58+

HTTP_Engine/Compute/MakeRequestAsync.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -47,3 +47,4 @@ public static Task<string> MakeRequestAsync(GetRequest request, HttpClient clien
4747
}
4848

4949

50+

HTTP_Engine/Compute/PostRequest.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
/*
1+
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2019, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -87,3 +87,4 @@ public static string PostRequest(string baseUrl, CustomObject headers = null, Cu
8787
}
8888
}
8989
}
90+

HTTP_Engine/Convert/ToUrlString.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -98,3 +98,4 @@ public static string ToUrlString(CustomObject obj)
9898

9999

100100

101+

HTTP_Engine/Create/GetRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -50,3 +50,4 @@ public static GetRequest GetRequest(string baseUrl, CustomObject headers = null,
5050

5151

5252

53+

HTTP_Engine/Create/HTTPAdapterConfig.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -45,3 +45,4 @@ public static HTTPConfig HTTPAdapterConfig(double secondsToTimeout)
4545

4646

4747

48+

HTTP_Engine/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -58,3 +58,4 @@
5858
[assembly: AssemblyFileVersion("6.1.0.0")]
5959

6060

61+

HTTP_oM/GetRequest.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -43,3 +43,4 @@ public class GetRequest : IRequest
4343

4444

4545

46+

HTTP_oM/HTTPAdapterConfig.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -66,3 +66,4 @@ public static explicit operator HTTPConfig(Dictionary<string, object> dic)
6666

6767

6868

69+

HTTP_oM/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* This file is part of the Buildings and Habitats object Model (BHoM)
3-
* Copyright (c) 2015 - 2022, the respective contributors. All rights reserved.
3+
* Copyright (c) 2015 - 2023, the respective contributors. All rights reserved.
44
*
55
* Each contributor holds copyright over their respective contributions.
66
* The project versioning (Git) records all such contribution source information.
@@ -58,3 +58,4 @@
5858
[assembly: AssemblyFileVersion("6.1.0.0")]
5959

6060

61+

0 commit comments

Comments
 (0)